We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4e983a commit eb66095Copy full SHA for eb66095
1 file changed
.github/workflows/ci_cd.yml
@@ -62,11 +62,12 @@ jobs:
62
- name: Install dependencies
63
run: npm ci
64
- name: Release
65
- id: release
+ id: semantic
66
uses: cycjimmy/semantic-release-action@v2
67
env:
68
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69
- name: Tag
70
- run: git tag -f zzz && git push origin zzz
+ run: git tag -f v${MAJOR_VERSION} && git push origin v${MAJOR_VERSION}
71
72
73
+ MAJOR_VERSION: ${{ steps.semantic.outputs.new_release_major_version }}
0 commit comments