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 4241fb2 commit 5480f77Copy full SHA for 5480f77
.github/workflows/release-it.yaml
@@ -2,12 +2,18 @@ name: Release to npm
2
on: workflow_dispatch
3
4
jobs:
5
- build:
+ publish:
6
runs-on: ubuntu-latest
7
steps:
8
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v2
9
+ - uses: actions/setup-node@v2
10
+ with:
11
+ node-version: '14.x'
12
+ cache: 'pnpm'
13
- uses: pnpm/action-setup@v2
14
with:
- version: 7
- - run: pnpm install --frozen-lockfile
- - run: pnpm test
15
+ version: '6.x'
16
+ - run: pnpm install
17
+ - run: pnpm publish
18
+ env:
19
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
0 commit comments