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

fix: moved env before needs

This commit is contained in:
Noel Miller 2024-03-06 01:06:40 -06:00
parent a51e4d59b4
commit 36f4bf1e00

View file

@ -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