Skip to content

Commit 47226f1

Browse files
committed
fix: PARTSIZE
1 parent 3930f9b commit 47226f1

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ name: CI
66
on:
77
# Triggers the workflow on push or pull request events but only for the "master" branch
88
push:
9-
branches: [ "master" ]
9+
branches: ["master"]
1010
paths:
11-
- '**'
12-
- '!README*'
13-
- '!changelog.txt'
11+
- "**"
12+
- "!README*"
13+
- "!changelog.txt"
1414

1515
pull_request:
16-
branches: [ "master" ]
16+
branches: ["master"]
1717

1818
# Allows you to run this workflow manually from the Actions tab
1919
workflow_dispatch:
@@ -33,11 +33,13 @@ jobs:
3333
# Runs a single command using the runners shell
3434
- name: Build image
3535
run: |
36+
echo "CONFIG_TARGET_KERNEL_PARTSIZE=16" >> .env
37+
echo "CONFIG_TARGET_ROOTFS_PARTSIZE=256" >> .env
3638
echo "PPPOE_USERNAME=123" >> modules/network/.env
3739
echo "PPPOE_PASSWORD=123" >> modules/network/.env
3840
echo "LAN_IP=192.168.1.1" >> modules/network/.env
3941
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
4143
./run.sh --image=openwrt/imagebuilder:x86-64-23.05.0-rc3
4244
./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

0 commit comments

Comments
 (0)