We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b81ad07 commit 1aeff54Copy full SHA for 1aeff54
.github/workflows/auto-release.yml
@@ -45,11 +45,19 @@ jobs:
45
# pnpm exec release-it --ci
46
# env:
47
# GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
48
- - name: Create tag only
49
- run: pnpm exec release-it --ci --no-github
+ - name: Create tag and push it
+ run: |
50
+ git pull origin main
51
+ pnpm exec release-it --ci --no-github
52
+ env:
53
+ GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
54
55
- name: Push tag
56
run: git push origin v$(pnpm exec release-it --ci --dry-run | grep 'next version' | awk '{print $NF}')
57
58
59
60
- name: Create GitHub release
61
run: pnpm exec release-it --ci --no-npm
62
63
0 commit comments