mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 02:47:56 +01:00
fix iso name
This commit is contained in:
parent
3378cbdbe7
commit
61f74abadb
3 changed files with 5 additions and 5 deletions
2
.github/workflows/build_iso.yml
vendored
2
.github/workflows/build_iso.yml
vendored
|
|
@ -143,7 +143,7 @@ jobs:
|
|||
id: upload
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ steps.build.outputs.iso_name }}
|
||||
name: ${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}
|
||||
path: |
|
||||
build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}.iso
|
||||
build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}.iso-CHECKSUM
|
||||
|
|
|
|||
4
.github/workflows/test_deployment.yml
vendored
4
.github/workflows/test_deployment.yml
vendored
|
|
@ -86,11 +86,11 @@ jobs:
|
|||
- name: Download generated ISO
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ${{ inputs[format('iso_name-{0}', matrix.version)] }}
|
||||
name: ${{ inputs[format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version)] }}
|
||||
|
||||
- name: Add Kickstart and Grub options to ISO
|
||||
run: |
|
||||
make test/vm/files/install.iso ISO_NAME=${{ inputs[format('iso_name-{0}', matrix.version)] }}
|
||||
make test/vm/files/install.iso ISO_NAME=${{ inputs[format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version)] }}.iso
|
||||
|
||||
- name: Create VM disk
|
||||
run: |
|
||||
|
|
|
|||
4
.github/workflows/test_iso.yml
vendored
4
.github/workflows/test_iso.yml
vendored
|
|
@ -85,7 +85,7 @@ jobs:
|
|||
- name: Download generated ISO
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ${{ inputs[format('iso_name-{0}', matrix.version)] }}
|
||||
name: ${{ inputs[format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version)] }}
|
||||
|
||||
- name: Run ISO checks
|
||||
run: |
|
||||
|
|
@ -99,7 +99,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('iso_name-{0}', matrix.version)] }}
|
||||
ISO_NAME=${{ inputs[format('{0}-{1}', needs.load_vars.outputs.IMAGE_NAME, matrix.version)] }}.iso
|
||||
|
||||
- name: Set status
|
||||
if: inputs.pr && always()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue