From 0f9cb8812cb1950dca74be0f7a4737a3318d6051 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Mon, 19 Feb 2024 12:38:14 -0500 Subject: [PATCH] fix: always push for testing and include variant in ISO name --- .github/workflows/test-iso.yml | 1 - action.yml | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/test-iso.yml b/.github/workflows/test-iso.yml index d39a260..9b818f5 100644 --- a/.github/workflows/test-iso.yml +++ b/.github/workflows/test-iso.yml @@ -51,7 +51,6 @@ jobs: VERSION: ${{ matrix.version }} ACTION_REPO: ${{ github.repository }} ACTION_REF: ${{ github.ref }} - PUSH_ISO: "false" check: name: Check build successful diff --git a/action.yml b/action.yml index d3140ce..4d73841 100644 --- a/action.yml +++ b/action.yml @@ -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