Skip to content

Commit b22553d

Browse files
ci: update github action scripts with more atomic jobs
1 parent c13c110 commit b22553d

File tree

4 files changed

+52
-50
lines changed

4 files changed

+52
-50
lines changed

.github/workflows/release.yml .github/workflows/create.release.yml

+6-21
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ on:
66
name: Create Release
77

88
jobs:
9-
build:
9+
test:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [ 16.x ]
13+
node-version: [16.x]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use Node.js ${{ matrix.node-version }}
1717
uses: actions/setup-node@v2
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
cache: 'npm'
21-
- run: npm ci --ignore-scripts
21+
- run: npm ci
2222
- run: npm run build --if-present
2323

24-
release_git:
25-
needs: build
24+
build:
25+
needs: test
2626
name: Create Release
2727
runs-on: ubuntu-latest
2828
steps:
@@ -37,19 +37,4 @@ jobs:
3737
tag_name: ${{ github.ref }}
3838
release_name: Release ${{ github.ref }}
3939
draft: false
40-
prerelease: false
41-
42-
publish:
43-
needs: release_git
44-
runs-on: ubuntu-latest
45-
steps:
46-
- uses: actions/checkout@v2
47-
with:
48-
ref: ${{ github.event.release.target_commitish }}
49-
- uses: actions/setup-node@v2
50-
with:
51-
node-version: 16
52-
registry-url: "https://registry.npmjs.org"
53-
- run: npm publish --access public
54-
env:
55-
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
40+
prerelease: false

.github/workflows/npm.publish.yml

-29
This file was deleted.

.github/workflows/publish.github.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
workflow_dispatch:
3+
release:
4+
types:
5+
- created
6+
7+
name: github - package publish
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
packages: write
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: actions/setup-node@v2
18+
with:
19+
node-version: 16
20+
registry-url: 'https://npm.pkg.github.com'
21+
scope: '@conjoon'
22+
- run: npm publish
23+
env:
24+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/publish.npmjs.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
workflow_dispatch:
3+
release:
4+
types:
5+
- created
6+
7+
name: npmjs - package publish
8+
9+
jobs:
10+
publish:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
ref: ${{ github.event.release.target_commitish }}
16+
- uses: actions/setup-node@v2
17+
with:
18+
node-version: 16
19+
registry-url: "https://registry.npmjs.org"
20+
- run: npm publish --access public
21+
env:
22+
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

0 commit comments

Comments
 (0)