We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 526c4c8 commit 0176e3eCopy full SHA for 0176e3e
1 file changed
.github/workflows/publish-release.yml
@@ -66,6 +66,13 @@ jobs:
66
git push origin "${TAG}"
67
fi
68
69
+ - name: Update major version tag for GitHub Action
70
+ if: steps.check.outputs.published == 'false'
71
+ run: |
72
+ MAJOR="v$(echo "${{ steps.check.outputs.version }}" | cut -d. -f1)"
73
+ git tag -f "${MAJOR}"
74
+ git push origin "${MAJOR}" --force
75
+
76
- name: Create GitHub Release
77
if: steps.check.outputs.published == 'false'
78
run: |
0 commit comments