We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa06305 commit 6888ea6Copy full SHA for 6888ea6
.github/workflows/release.yml
@@ -31,3 +31,10 @@ jobs:
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
34
+
35
+ - name: Create git tags
36
+ if: steps.changesets.outputs.published == 'true'
37
+ run: |
38
+ VERSION=$(node -p "require('./packages/cli/package.json').version")
39
+ git tag "v$VERSION"
40
+ git push origin "v$VERSION"
0 commit comments