Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chenmozhijin committed Sep 15, 2024
1 parent 1ca9c9c commit 731d679
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/build-openwrt-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: 准备编译
id: prepare
run: python3 -m build_helper --task build-prepare --config '${{ matrix.config }}''
run: python3 -m build_helper --task build-prepare --config ${{ matrix.config }}
env:
Token: ${{ github.token }}

Expand All @@ -81,7 +81,7 @@ jobs:
- name: 编译
id: build
run: python3 -m build_helper --task base-builds --config '${{ matrix.config }}'
run: python3 -m build_helper --task base-builds --config ${{ matrix.config }}

- name: 上传
uses: ./.github/action/upload
Expand Down Expand Up @@ -150,4 +150,21 @@ jobs:
run: python3 -m build_helper --task build_image_builder --config ${{ matrix.config }}

- name: 上传
uses: ./.github/action/upload
uses: ./.github/action/upload

build-Image:
runs-on: ubuntu-22.04
needs: [prepare,base-builds,build-ImageBuilder,build-packages]
name: build-Image-${{ matrix.name }}
strategy:
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- name: 建立环境
uses: ./.github/action/prepare

- name: 准备构建
id: prepare
run: python3 -m build_helper --task build-prepare --config ${{ matrix.config }}
env:
Token: ${{ github.token }}

0 comments on commit 731d679

Please sign in to comment.