From f8c7cc118471a463eeb8c0ecb7999f7e931c6f7c Mon Sep 17 00:00:00 2001 From: sangdammad <86688098+sangdammad@users.noreply.github.com> Date: Wed, 5 Oct 2022 15:58:59 -0500 Subject: [PATCH] fix:env_variable error (#25) Co-authored-by: Sangeetha Madamanchi --- .github/workflows/publish-latest.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-latest.yaml b/.github/workflows/publish-latest.yaml index ea4e3c9..2d572ae 100644 --- a/.github/workflows/publish-latest.yaml +++ b/.github/workflows/publish-latest.yaml @@ -5,7 +5,7 @@ on: branches: [master] types: [completed] env: - VERSION: 0.0.2 + VERSION: v0.0.2 jobs: deploy: runs-on: ubuntu-latest @@ -13,7 +13,7 @@ jobs: - name: Tag Repo uses: richardsimko/update-tag@v1 with: - tag_name: v$VERSION + tag_name: ${{ env.VERSION }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} publish-latest: @@ -37,4 +37,4 @@ jobs: with: context: . push: true - tags: ghcr.io/expediagroup/overwhelm:latest,ghcr.io/expediagroup/overwhelm:$VERSION \ No newline at end of file + tags: ghcr.io/expediagroup/overwhelm:latest,ghcr.io/expediagroup/overwhelm:${{ env.VERSION }} \ No newline at end of file