Skip to content

Commit

Permalink
fix: PARTSIZE
Browse files Browse the repository at this point in the history
  • Loading branch information
raighnew committed Sep 26, 2024
1 parent 3930f9b commit 47226f1
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
branches: ["master"]
paths:
- '**'
- '!README*'
- '!changelog.txt'
- "**"
- "!README*"
- "!changelog.txt"

pull_request:
branches: [ "master" ]
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -33,11 +33,13 @@ jobs:
# Runs a single command using the runners shell
- name: Build image
run: |
echo "CONFIG_TARGET_KERNEL_PARTSIZE=16" >> .env
echo "CONFIG_TARGET_ROOTFS_PARTSIZE=256" >> .env
echo "PPPOE_USERNAME=123" >> modules/network/.env
echo "PPPOE_PASSWORD=123" >> modules/network/.env
echo "LAN_IP=192.168.1.1" >> modules/network/.env
echo "CLASH_CONFIG_URL=https://gist.github.com/EkkoG/20a52db0169c4a4769689521b1c5500e/raw/cf61a9397d0bdbd5b6bbad8fbb388ec851116470/clash_example.yaml" >> modules/openclash/.env
echo "MODULES=openclash openclash-as-default" > .env
echo "MODULES=openclash openclash-as-default" >> .env
./run.sh --image=openwrt/imagebuilder:x86-64-23.05.0-rc3
./run.sh --image=openwrt/imagebuilder:x86-64-22.03.3
./run.sh --image=openwrt/imagebuilder:x86-64-21.02.7
./run.sh --image=openwrt/imagebuilder:x86-64-21.02.7

0 comments on commit 47226f1

Please sign in to comment.