File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ name: CI
6
6
on :
7
7
# Triggers the workflow on push or pull request events but only for the "master" branch
8
8
push :
9
- branches : [ "master" ]
9
+ branches : ["master"]
10
10
paths :
11
- - ' ** '
12
- - ' !README*'
13
- - ' !changelog.txt'
11
+ - " ** "
12
+ - " !README*"
13
+ - " !changelog.txt"
14
14
15
15
pull_request :
16
- branches : [ "master" ]
16
+ branches : ["master"]
17
17
18
18
# Allows you to run this workflow manually from the Actions tab
19
19
workflow_dispatch :
@@ -33,11 +33,13 @@ jobs:
33
33
# Runs a single command using the runners shell
34
34
- name : Build image
35
35
run : |
36
+ echo "CONFIG_TARGET_KERNEL_PARTSIZE=16" >> .env
37
+ echo "CONFIG_TARGET_ROOTFS_PARTSIZE=256" >> .env
36
38
echo "PPPOE_USERNAME=123" >> modules/network/.env
37
39
echo "PPPOE_PASSWORD=123" >> modules/network/.env
38
40
echo "LAN_IP=192.168.1.1" >> modules/network/.env
39
41
echo "CLASH_CONFIG_URL=https://gist.github.com/EkkoG/20a52db0169c4a4769689521b1c5500e/raw/cf61a9397d0bdbd5b6bbad8fbb388ec851116470/clash_example.yaml" >> modules/openclash/.env
40
- echo "MODULES=openclash openclash-as-default" > .env
42
+ echo "MODULES=openclash openclash-as-default" >> .env
41
43
./run.sh --image=openwrt/imagebuilder:x86-64-23.05.0-rc3
42
44
./run.sh --image=openwrt/imagebuilder:x86-64-22.03.3
43
- ./run.sh --image=openwrt/imagebuilder:x86-64-21.02.7
45
+ ./run.sh --image=openwrt/imagebuilder:x86-64-21.02.7
You can’t perform that action at this time.
0 commit comments