Skip to content

Commit

Permalink
fix: version in docker-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
phsmith committed May 30, 2024
1 parent 462f23d commit eee5c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
[[ "${{ github.ref }}" == "refs/tags/"* ]] && export VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//')
# Push docker image:latest if no alfa or beta is set in the version tag.
if [[ ! "$VERSION" =~ (alfa|beta) ]]; then
Expand Down

0 comments on commit eee5c49

Please sign in to comment.