We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8111ff commit ea0c883Copy full SHA for ea0c883
1 file changed
.github/workflows/npm-release.yml
@@ -24,6 +24,9 @@ jobs:
24
needs: test
25
runs-on: ubuntu-latest
26
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
27
+ permissions:
28
+ contents: write
29
+ id-token: write
30
steps:
31
- uses: actions/checkout@v4
32
with:
@@ -32,9 +35,11 @@ jobs:
35
33
36
node-version: "24"
34
37
cache: "npm"
38
+ registry-url: "https://registry.npmjs.org"
39
- run: npm ci
40
- run: npm run build
41
- name: Release
42
env:
43
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44
+ NPM_CONFIG_PROVENANCE: true
45
run: npx semantic-release
0 commit comments