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

fix: generate environment variable for ISO_NAME

This commit is contained in:
Noel Miller 2024-03-06 01:15:02 -06:00
parent f19c5c72df
commit b528b8ab7f

View file

@ -57,14 +57,16 @@ 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
steps:
- name: Set Environment Variables
run: |
echo "ISO_NAME=${{ env.IMAGE_NAME }}-${{ env.VERSION }}" >> $GITHUB_ENV
- name: Checkout repo
uses: actions/checkout@v4