-
-
Notifications
You must be signed in to change notification settings - Fork 2
64 lines (57 loc) · 1.54 KB
/
publish.yml
File metadata and controls
64 lines (57 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: publish
on:
release:
types: [published]
env:
CI: true
node-version: 22
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: sudo /etc/init.d/mysql start
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.node-version }}
- run: sh sql/init-mysql.sh
- run: npm install
- run: npm test
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v6
name: Node ${{ env.node-version }}
with:
node-version: ${{ env.node-version }}
registry-url: https://registry.npmjs.org/
- uses: actions/checkout@v6
with:
fetch-depth: 0
# fetch-depth 0 needed by GitHub Release
- name: publish to NPM
run: |
VERSION=$(node -e 'console.log(require("./package.json").version)')
if printf '%s' "$VERSION" | grep -q -- '-'; then
# prerelease versions get the "next" tag
npm publish --access=public --tag=next
else
npm publish --access=public
fi
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ env.node-version }}
registry-url: https://npm.pkg.github.com/
scope: '@nictool'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}