Skip to content

Commit

Permalink
fix:env_variable error (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: Sangeetha Madamanchi <[email protected]>
  • Loading branch information
sangdammad and Sangeetha Madamanchi authored Oct 5, 2022
1 parent 8d57eb2 commit f8c7cc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
branches: [master]
types: [completed]
env:
VERSION: 0.0.2
VERSION: v0.0.2
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- 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:
Expand All @@ -37,4 +37,4 @@ jobs:
with:
context: .
push: true
tags: ghcr.io/expediagroup/overwhelm:latest,ghcr.io/expediagroup/overwhelm:$VERSION
tags: ghcr.io/expediagroup/overwhelm:latest,ghcr.io/expediagroup/overwhelm:${{ env.VERSION }}

0 comments on commit f8c7cc1

Please sign in to comment.