Skip to content

Commit

Permalink
fix: env var reference
Browse files Browse the repository at this point in the history
  • Loading branch information
alarv committed May 30, 2024
1 parent 4452980 commit 9986d41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: $IMAGE_NAME
images: ${{ env.IMAGE_NAME }}

- name: Update version in build.gradle.kts
run: >-
Expand Down Expand Up @@ -59,4 +59,4 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Push docker image to DockerHub
run: docker push ${IMAGE_NAME}:${{ steps.meta.outputs.tags }}
run: docker push ${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.tags }}

0 comments on commit 9986d41

Please sign in to comment.