File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build check
2
+ on : [ push ]
3
+
4
+ jobs :
5
+ build :
6
+ name : Build boot images
7
+ runs-on : ubuntu-latest
8
+ container :
9
+ image : ghcr.io/zbm-dev/zbm-builder
10
+ steps :
11
+ - uses : actions/checkout@master
12
+
13
+ - name : Create files
14
+ run : |
15
+ ln -s "$(pwd)" /zbm
16
+ [ -x /zbm/releng/docker/zbm-build.sh ] && /zbm/releng/docker/zbm-build.sh
17
+
18
+ - name : Archive EFI
19
+ uses : actions/upload-artifact@v2
20
+ with :
21
+ name : EFI
22
+ path : /zbm/releng/docker/build/*.EFI
23
+
24
+ - name : Archive components
25
+ uses : actions/upload-artifact@v2
26
+ with :
27
+ name : Components
28
+ path : |
29
+ /zbm/releng/docker/build/*
30
+ !/zbm/releng/docker/build/*.EFI
Original file line number Diff line number Diff line change 1
- name : ZFS Boot Menu
1
+ name : Analyze scripts
2
2
on : [ push ]
3
3
4
4
jobs :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- uses : actions/checkout@master
10
+
10
11
- name : Run ShellCheck
11
12
uses : ludeeus/action-shellcheck@master
You can’t perform that action at this time.
0 commit comments