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

fix: added move to entrypoint

This commit is contained in:
Noel Miller 2024-03-05 23:57:11 -06:00
parent 01d12228dd
commit 288976f017
4 changed files with 5 additions and 13 deletions

View file

@ -94,16 +94,12 @@ jobs:
secure_boot_key_url: ${{ env.SECURE_BOOT_KEY_URL }}
enrollment_password: ${{ env.ENROLLMENT_PASSWORD }}
- name: Rename ISO
run: |
mv ${{ env.OUTPUT_DIR }}/deploy.iso ${{ env.OUTPUT_DIR }}/${{ env.IMAGE_NAME }}-${{ env.VERSION }}.iso
- name: Upload ISO as artifact
id: upload
uses: actions/upload-artifact@v4
with:
name: ${{ env.IMAGE_NAME }}-${{ env.VERSION }}.iso
path: ${{ env.OUTPUT_DIR }}/*.iso
path: ${{ github.workspace}}/{{ env.IMAGE_NAME }}-${{ env.VERSION }}.iso
if-no-files-found: error
retention-days: 0
compression-level: 0