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 1706246 commit 176b47aCopy full SHA for 176b47a
.github/workflows/release-pkg.yaml
@@ -39,6 +39,12 @@ jobs:
39
registry-url: 'https://registry.npmjs.org'
40
cache: pnpm
41
42
+ # npm 11.5.1 or later is required so update to latest to use OIDC trusted publisher
43
+ # https://github.com/eslint/config-inspector/pull/174/files
44
+ # https://github.com/e18e/ecosystem-issues/issues/201
45
+ - name: Update npm to latest for Trusted Publisher (OIDC)
46
+ run: npm install -g npm@latest
47
+
48
- name: Install dependencies
49
run: pnpm install --frozen-lockfile
50
@@ -51,7 +57,3 @@ jobs:
51
57
52
58
- name: Packages publish
53
59
run: pnpm publish -r --access public --no-git-checks
54
- env:
55
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
56
- NPM_TOKEN: ${{secrets.NPM_TOKEN}}
- NPM_CONFIG_PROVENANCE: true
0 commit comments