We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35de2f4 commit 8c50674Copy full SHA for 8c50674
1 file changed
.github/workflows/release.yml
@@ -33,6 +33,12 @@ jobs:
33
- name: Publish to npm
34
if: steps.changesets.outputs.hasChangesets == 'false'
35
run: |
36
- npm config set registry https://registry.npmjs.org
37
bun run build
38
- npx changeset publish
+ npm publish --provenance --access public
+ - name: Create git tags
39
+ if: steps.changesets.outputs.hasChangesets == 'false'
40
+ run: |
41
+ npx changeset tag
42
+ git push --follow-tags
43
+ env:
44
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments