Skip to content

Commit 63b6da7

Browse files
authored
Update npm-publish.yml
修改自动代码
1 parent b54a769 commit 63b6da7

File tree

1 file changed

+15
-20
lines changed

1 file changed

+15
-20
lines changed

.github/workflows/npm-publish.yml

+15-20
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,25 @@ on:
77
push:
88
branches:
99
- main
10-
release:
11-
types: [created]
1210

1311
jobs:
14-
build:
12+
publish:
1513
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-node@v4
19-
with:
20-
node-version: 20
21-
- run: npm ci
22-
- run: npm test
2314

24-
publish-npm:
25-
needs: build
26-
runs-on: ubuntu-latest
2715
steps:
28-
- uses: actions/checkout@v4
29-
- uses: actions/setup-node@v4
16+
- name: Checkout code
17+
uses: actions/checkout@v2
18+
19+
- name: Set up Node.js
20+
uses: actions/setup-node@v2
3021
with:
31-
node-version: 20
32-
registry-url: https://registry.npmjs.org/
33-
- run: npm install
34-
- run: npm publish
22+
node-version: '14'
23+
registry-url: 'https://registry.npmjs.org/'
24+
25+
- name: Install dependencies
26+
run: npm install
27+
28+
- name: Publish to npm
29+
run: npm publish
3530
env:
36-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
31+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)