Skip to content

Commit fa456aa

Browse files
committed
fix: ci idf.py not found
1 parent 36476f0 commit fa456aa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- ci/*
78
pull_request:
89
branches:
910
- main
@@ -92,7 +93,10 @@ jobs:
9293
uses: actions/checkout@v4
9394

9495
- name: Build current board
95-
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 }}
96100
97101
- name: Upload artifacts
98102
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)