mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +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
|
id: upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.build.outputs.iso_name }}
|
name: ${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}
|
||||||
path: |
|
path: |
|
||||||
build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}.iso
|
build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}.iso
|
||||||
build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}.iso-CHECKSUM
|
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
|
- name: Download generated ISO
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
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
|
- name: Add Kickstart and Grub options to ISO
|
||||||
run: |
|
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
|
- name: Create VM disk
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
4
.github/workflows/test_iso.yml
vendored
4
.github/workflows/test_iso.yml
vendored
|
|
@ -85,7 +85,7 @@ jobs:
|
||||||
- name: Download generated ISO
|
- name: Download generated ISO
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
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
|
- name: Run ISO checks
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -99,7 +99,7 @@ jobs:
|
||||||
FLATPAK_REMOTE_REFS_DIR=${{ needs.load_vars.outputs.FLATPAK_REMOTE_REFS_DIR }} \
|
FLATPAK_REMOTE_REFS_DIR=${{ needs.load_vars.outputs.FLATPAK_REMOTE_REFS_DIR }} \
|
||||||
SECURE_BOOT_KEY_URL=${{ needs.load_vars.outputs.SECURE_BOOT_KEY_URL }} \
|
SECURE_BOOT_KEY_URL=${{ needs.load_vars.outputs.SECURE_BOOT_KEY_URL }} \
|
||||||
ENROLLMENT_PASSWORD=${{ needs.load_vars.outputs.ENROLLMENT_PASSWORD }} \
|
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
|
- name: Set status
|
||||||
if: inputs.pr && always()
|
if: inputs.pr && always()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue