We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2eaa7b commit 3a6eeeeCopy full SHA for 3a6eeee
1 file changed
.github/workflows/release.yml
@@ -9,15 +9,15 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
13
- - uses: actions/setup-node@v1
14
- with:
15
- node-version: '12.x'
16
- registry-url: 'https://registry.npmjs.org'
17
- - name: release on npm
18
- run: |
19
- npm ci
20
- npm run build
21
- - run: npm publish
22
- env:
23
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
+ with:
+ node-version: '18.x'
+ registry-url: 'https://registry.npmjs.org'
+ - name: release on npm
+ run: |
+ yarn install --frozen-lockfile
+ yarn build
+ - run: npm publish
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments