We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9b7f07 commit 20f4632Copy full SHA for 20f4632
.github/workflows/release-please.yml
@@ -6,6 +6,7 @@ on:
6
- master
7
8
permissions:
9
+ id-token: write # Required for OIDC
10
contents: write
11
pull-requests: write
12
@@ -31,6 +32,11 @@ jobs:
31
32
node-version: 'lts/*'
33
registry-url: 'https://registry.npmjs.org'
34
35
+ # Ensure npm 11.5.1 or later is installed
36
+ - name: Update npm
37
+ if: ${{ steps.release.outputs.release_created }}
38
+ run: npm install -g npm@latest
39
+
40
- name: Install dependencies
41
if: ${{ steps.release.outputs.release_created }}
42
run: npm install
@@ -42,5 +48,3 @@ jobs:
48
- name: Publish to npm
43
49
44
50
run: npm publish --access public
45
- env:
46
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments