From 36f4bf1e00eae4bcaa9a369b2c42ef1728aeb3a1 Mon Sep 17 00:00:00 2001 From: Noel Miller Date: Wed, 6 Mar 2024 01:06:40 -0600 Subject: [PATCH] fix: moved env before needs --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 4c42fee..0de06a5 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -59,13 +59,13 @@ jobs: build-and-push-iso: runs-on: ubuntu-latest + env: + ISO_NAME: ${{ env.IMAGE_NAME }}-${{ env.VERSION }} needs: - build-container permissions: contents: read packages: write - env: - ISO_NAME: ${{ env.IMAGE_NAME }}-${{ env.VERSION }} steps: - name: Checkout repo uses: actions/checkout@v4