We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9272acd commit b00fac9Copy full SHA for b00fac9
.github/workflows/publish.yaml
@@ -161,6 +161,9 @@ jobs:
161
corepack enable
162
yarn install
163
164
+ # npm publish doen't like the yarn format "prepare" script
165
+ jq 'del(.scripts.prepare)' package.json > tmp.$$.json && mv tmp.$$.json package.json
166
+
167
# Publish from the extracted release (build output present)
168
npm publish --access=public --provenance --tag ${{ needs.prepare.outputs.tag }}
169
0 commit comments