We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36476f0 commit 19f53f3Copy full SHA for 19f53f3
.github/workflows/build.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ - ci/* # for ci test
8
pull_request:
9
10
@@ -92,11 +93,14 @@ jobs:
92
93
uses: actions/checkout@v4
94
95
- name: Build current board
- run: python scripts/release.py ${{ matrix.board }}
96
+ shell: bash
97
+ run: |
98
+ source $IDF_PATH/export.sh
99
+ python scripts/release.py ${{ matrix.board }}
100
101
- name: Upload artifacts
102
uses: actions/upload-artifact@v4
103
with:
- name: xiaozhi-${{ matrix.board }}-${{ github.sha }}
104
+ name: xiaozhi_${{ matrix.board }}_${{ github.sha }}.bin
105
path: build/merged-binary.bin
106
if-no-files-found: error
0 commit comments