We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605eee7 commit a8795f4Copy full SHA for a8795f4
.github/workflows/release.yml
@@ -30,6 +30,11 @@ jobs:
30
with:
31
node-version: '22'
32
33
+ - name: Upgrade npm for OIDC trusted publishing
34
+ run: |
35
+ npm install -g npm@latest
36
+ npm --version
37
+
38
- name: Install dependencies
39
run: npm install
40
@@ -73,11 +78,8 @@ jobs:
73
78
- name: Update version
74
79
run: npm version ${{ steps.version.outputs.version }} --no-git-tag-version --allow-same-version
75
80
76
- - name: Setup npm for trusted publishing
77
- uses: azu/setup-npm-trusted-publish@v1.0.3
-
81
- name: Publish to npm
- run: npm publish --access public
82
+ run: npm publish --access public --provenance
83
84
- name: Create Release
85
uses: softprops/action-gh-release@v2
0 commit comments