File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+ on :
3
+ push :
4
+ branches :
5
+ - ' master'
6
+ tags :
7
+ - ' v*'
8
+
9
+ jobs :
10
+ build :
11
+ name : Build
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v3
16
+ - name : Setup Node.js
17
+
18
+ with :
19
+ node-version : 12.9.1
20
+ cache : ' npm'
21
+ - name : Setup dependencies
22
+ run : |
23
+ npm ci
24
+ npm i -g nexe
25
+ - name : Build artifacts
26
+ run : make
27
+
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ alpine: alpine-arm
20
20
# ARM SUPPORT
21
21
#
22
22
darwin-arm :
23
- nexe index.js -t darwin- arm64 --build -o kubeopenapi-jsonschema-darwin -r " ./node_modules/**/*"
23
+ nexe index.js -t arm64 --build -o kubeopenapi-jsonschema-darwin -r " ./node_modules/**/*"
24
24
25
25
linux-arm :
26
26
nexe index.js -t arm64 --build -o kubeopenapi-jsonschema -r " ./node_modules/**/*"
You can’t perform that action at this time.
0 commit comments