feat:diy.sh

This commit is contained in:
dichgrem
2025-07-15 19:04:24 +08:00
parent 8598df77a8
commit 3f9b8ff7f5
2 changed files with 79 additions and 0 deletions

View File

@@ -77,6 +77,7 @@ jobs:
- name: Setup configuration
run: |
echo "📋 校验并复制配置:${{ inputs.config_path }} → immortalwrt/.config"
cp diy.sh immortalwrt/diy.sh
if [ ! -f "${{ inputs.config_path }}" ]; then
echo "❌ 找不到配置文件:${{ inputs.config_path }}"
exit 1
@@ -92,6 +93,13 @@ jobs:
echo "⬇️ 下载所有源码包"
make download -j8
- name: Run diy.sh
working-directory: immortalwrt
run: |
echo "🔧 执行 diy.sh"
chmod +x diy.sh
./diy.sh
- name: Build ImmortalWrt
working-directory: immortalwrt
run: |