We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41acaa3 commit 51f0196Copy full SHA for 51f0196
1 file changed
.github/workflows/publish.yaml
@@ -22,6 +22,15 @@ jobs:
22
env:
23
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
24
- run: pnpm publish -r --report-summary --publish-branch main --access=public
25
+
26
+ - name: Setup GH user
27
+ run: git config user.name ${{ secrets.GH_USER }}
28
+ run: git config user.email ${{ secrets.GH_EMAIL }}
29
30
+ - name: Push tags
31
+ run: pnpm changeset tag
32
+ run: git push --tags
33
34
- run: pnpm run generate-slack-report
35
- SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
36
+ SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
0 commit comments