1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

set iso name

This commit is contained in:
Jason N. 2024-03-31 10:17:12 -04:00
parent 61f74abadb
commit e4f32f414e
4 changed files with 10 additions and 52 deletions

View file

@ -6,17 +6,7 @@ on:
type: string
parent_job_name:
required: true
type: string
iso_name-38:
required: true
type: string
iso_name-39:
required: true
type: string
iso_name-40:
required: true
type: string
type: string
jobs:
load_vars:
@ -37,10 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version:
- 38
- 39
- 40
version: ${{ needs.load_vars.outputs.BUILD_VERSIONS }}
steps:
- name: Checkout
uses: actions/checkout@v4
@ -85,7 +72,7 @@ jobs:
- name: Download generated ISO
uses: actions/download-artifact@v4
with:
name: ${{ inputs[format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version)] }}
name: ${{ format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version) }}
- name: Run ISO checks
run: |
@ -99,7 +86,7 @@ jobs:
FLATPAK_REMOTE_REFS_DIR=${{ needs.load_vars.outputs.FLATPAK_REMOTE_REFS_DIR }} \
SECURE_BOOT_KEY_URL=${{ needs.load_vars.outputs.SECURE_BOOT_KEY_URL }} \
ENROLLMENT_PASSWORD=${{ needs.load_vars.outputs.ENROLLMENT_PASSWORD }} \
ISO_NAME=${{ inputs[format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version)] }}.iso
ISO_NAME=${{ format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version) }}.iso
- name: Set status
if: inputs.pr && always()