From 7604d75ffbe50b5684021fc5634b802dc9afbfb0 Mon Sep 17 00:00:00 2001 From: Yohann Paris Date: Thu, 14 Sep 2023 11:21:19 -0400 Subject: [PATCH] Update publish.yaml --- .github/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index c83d0d646d6..62f6ca57de5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -12,7 +12,7 @@ env: REGISTRY: ghcr.io OWNER: ${{ github.repository_owner }} BAKE_FILE: docker-bake.hcl - ARTIFACT: Dockerfile + ARTIFACT_FILENAME: Dockerfile jobs: tag-generator: @@ -68,7 +68,7 @@ jobs: - name: Save the generated Dockerfile as an artifact uses: actions/upload-artifact@v3 with: - name: ${{ env.ARTIFACT }} + name: ${{ env.ARTIFACT_FILENAME }} path: ./skema/text_reading/scala/webapp/target/docker/stage/Dockerfile if-no-files-found: error @@ -79,7 +79,7 @@ jobs: uses: darpa-askem/.github/.github/workflows/bake-publish.yaml@yohannparis/add-artifacts with: # Tell bake-publish.yaml that this is the Dockerfile to use - artifact: ${{ env.ARTIFACT }} + artifact: ${{ env.ARTIFACT_FILENAME }} file: 'docker-bake.hcl' group: 'prod' registry: 'ghcr.io'