We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b6ad25 commit 0413affCopy full SHA for 0413aff
1 file changed
.github/workflows/release.yml
@@ -80,13 +80,14 @@ jobs:
80
${{ runner.os }}-yarn-
81
- run: yarn install --immutable
82
- run: yarn build
83
+ - name: Prepare package for publishing
84
+ run: yarn readme
85
- name: Upgrade npm for OIDC trusted publishing
- run: |
- npm install -g npm@latest
86
- # Re-enable corepack after npm upgrade (npm install -g disables it)
87
- corepack enable
88
- corepack prepare yarn@4.10.3 --activate
+ run: npm install -g npm@latest
89
- name: Publish to npm
+ env:
+ # Skip prepack script since we already ran yarn readme
90
+ NPM_CONFIG_IGNORE_SCRIPTS: true
91
run: |
92
# Use npm CLI directly - requires npm >= 11.5.1 for OIDC trusted publishing
93
# Yarn 4.10.3 OIDC support appears broken despite all env vars being set correctly
0 commit comments