Skip to content

Commit

Permalink
remove v from tags in publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdaGastan committed Jan 10, 2024
1 parent cf19a8c commit a7ec298
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:

- name: Get latest version
run: |
echo "TAG_VERSION=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
TAG=$(git describe --tags --abbrev=0)
echo "TAG_VERSION=${TAG#v}" >> $GITHUB_OUTPUT
id: version

- name: Log in to the Container registry
Expand Down

0 comments on commit a7ec298

Please sign in to comment.