Skip to content

Commit 1236c88

Browse files
committed
fix: again. use correct tag
either one passed in or github.ref for publish saved as TAG_NAME. use TAG_NAME. :headdesk: Signed-off-by: jmeridth <jmeridth@gmail.com>
1 parent f2b14b5 commit 1236c88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/major-version-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
{ echo "tag=${tag}"; echo "version=${version}"; echo "major=${major}"; } >> "$GITHUB_OUTPUT"
2828
- name: force update major tag
2929
run: |
30-
git tag v${{ steps.version.outputs.major }} ${{ github.ref }}
30+
git tag v${{ steps.version.outputs.major }} ${TAG_NAME}
3131
git push -f origin v${{ steps.version.outputs.major }}

0 commit comments

Comments
 (0)