We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc92a8a commit 8a1869bCopy full SHA for 8a1869b
.github/workflows/release.yml
@@ -26,14 +26,16 @@ jobs:
26
uses: actions/setup-node@v4
27
with:
28
node-version: "lts/*"
29
- registry-url: 'https://registry.npmjs.org'
+ registry-url: "https://registry.npmjs.org"
30
cache: npm
31
- name: Install dependencies
32
run: npm clean-install
33
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
34
run: npm audit signatures
35
- name: Build
36
run: npm run build
37
+ - name: Remove npmrc to enable OIDC
38
+ run: rm -f ~/.npmrc
39
- name: Release
40
run: npx semantic-release
41
env:
0 commit comments