mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
fix: always push for testing and include variant in ISO name
This commit is contained in:
parent
a0cfe4e05a
commit
0f9cb8812c
2 changed files with 1 additions and 7 deletions
1
.github/workflows/test-iso.yml
vendored
1
.github/workflows/test-iso.yml
vendored
|
|
@ -51,7 +51,6 @@ jobs:
|
|||
VERSION: ${{ matrix.version }}
|
||||
ACTION_REPO: ${{ github.repository }}
|
||||
ACTION_REF: ${{ github.ref }}
|
||||
PUSH_ISO: "false"
|
||||
|
||||
check:
|
||||
name: Check build successful
|
||||
|
|
|
|||
|
|
@ -37,10 +37,6 @@ inputs:
|
|||
description: Repository ref for the build action
|
||||
required: false
|
||||
default: ${{ github.ref }}
|
||||
PUSH_ISO:
|
||||
description: Push ISO when done building
|
||||
required: false
|
||||
default: "true"
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
|
|
@ -105,10 +101,9 @@ runs:
|
|||
mv ${{ inputs.IMAGE_NAME }}-${{ inputs.IMAGE_TAG || inputs.VERSION }}.iso end_iso/
|
||||
|
||||
- name: Upload ISO as artifact
|
||||
if: inputs.PUSH_ISO == 'true'
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ inputs.IMAGE_NAME }}-${{ inputs.IMAGE_TAG || inputs.VERSION }}.iso
|
||||
name: ${{ inputs.IMAGE_NAME }}-${{ inputs.IMAGE_TAG || inputs.VERSION }}-${{ inputs.VARIANT }}.iso
|
||||
path: end_iso/*.iso
|
||||
if-no-files-found: error
|
||||
retention-days: 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue