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 81049e1 commit e298dbbCopy full SHA for e298dbb
.github/workflows/release.yml
@@ -66,12 +66,12 @@ jobs:
66
path: ~/.npm
67
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
68
- run: npm install --prefer-offline
69
- - run: npm publish --tag latest-v3.x
70
- if: ${{ !contains(github.ref_name, '-test.') }}
+ - if: ${{ !contains(github.ref_name, '-test.') }}
+ run: npm publish --tag latest-v3.x
71
env:
72
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
73
# If "test" prerelease is present, pretend to publish package.
74
- - run: npm publish --tag latest-v3.x --dry-run
75
- if: ${{ contains(github.ref_name, '-test.') }}
+ - if: ${{ contains(github.ref_name, '-test.') }}
+ run: npm publish --tag latest-v3.x --dry-run
76
77
0 commit comments