This repository was archived by the owner on Oct 18, 2023. It is now read-only.
File tree 2 files changed +23
-10
lines changed
2 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 22
22
with :
23
23
node-version : ${{matrix.node}}
24
24
- name : Install
25
- run : npm install --unsafe-perm
25
+ run : npm ci --unsafe-perm
26
26
- name : Publish prebuild
27
27
shell : bash
28
28
run : npm run prebuild -- -t ${{matrix.target}} -r ${{matrix.runtime}} --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${{ secrets.GITHUB_TOKEN }}
44
44
with :
45
45
node-version : ${{matrix.node}}
46
46
- name : Install
47
- run : npm install --unsafe-perm
47
+ run : npm ci --unsafe-perm
48
48
- name : Publish prebuild
49
49
shell : bash
50
- run : npm run prebuild -- -t ${{matrix.target}} -r ${{matrix.runtime}} --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${{ secrets.GITHUB_TOKEN }}
50
+ run : npm run prebuild -- -t ${{matrix.target}} -r ${{matrix.runtime}} --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${{ secrets.GITHUB_TOKEN }}
51
+
52
+ deploy :
53
+ needs :
54
+ - prebuild-node
55
+ - prebuild-electron
56
+ runs-on : ubuntu-latest
57
+ steps :
58
+ - name : Set up Git repository
59
+ uses : actions/checkout@v2
60
+ - name : Set up node
61
+ uses : actions/setup-node@v2
62
+ with :
63
+ node-version : 14
64
+ - name : Publish tagged release
65
+ uses : JS-DevTools/npm-publish@v1
66
+ with :
67
+ token : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 3
3
.vscode
4
4
build
5
5
bin
6
- node_modules
7
- crash.log
6
+ * .log
8
7
data
9
8
test
10
9
examples
11
- .travis.yml
12
10
doc
13
- coverage
14
- coverage-report
15
- tmpdata
16
11
ci
17
12
.dockerignore
18
13
dist
19
- native-node-utils
14
+ prebuilds
15
+ .github
You can’t perform that action at this time.
0 commit comments