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 c598b03 commit 65a17edCopy full SHA for 65a17ed
.github/workflows/ci.yaml
@@ -44,7 +44,10 @@ jobs:
44
VERSION=$(yq '.info.version' openapi.yaml | tr -d '"')
45
jq --arg version "$VERSION" '.version = $version' package.json > tmp.$$.json && mv tmp.$$.json package.json
46
47
- - run: |
48
- pnpm publish --provenance --tag next --publish-branch v2 --no-git-checks
+ - name: Set up .npmrc
+ run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
49
env:
50
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
51
+
52
+ - name: Release
53
+ run: pnpm publish --provenance --tag next --publish-branch v2 --no-git-checks
0 commit comments