-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (47 loc) · 1.2 KB
/
npmpublish.yml
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
name: publish npm package
on:
push:
paths:
- "package.json"
branches:
- main
jobs:
publish-gpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
scope: "@400f"
- name: can npm publish
id: can
run: |
set -eu
npm i -g can-npm-publish
if can-npm-publish; then
echo "##[set-output name=result;]true"
else
echo "##[set-output name=result;]false"
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: npm install
run: |
set -eu
npm install
- name: test
run: |
set -eu
npm run test
# キャッシュ機構なくてワロタ
# TODO: feature増えたらちゃんとやる
- name: publish
if: steps.can.outputs.result == 'true'
run: |
set -eu
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}