Skip to content

Commit 74bea35

Browse files
fix: 修复 GitHub Actions JSON 输出格式问题
1 parent 5b7de87 commit 74bea35

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-verdure.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
- id: list
3030
name: Get all variant list
3131
run: |
32-
echo "all_variants=$(python scripts/release-verdure.py --list-boards --json)" >> $GITHUB_OUTPUT
32+
echo "all_variants<<EOF" >> $GITHUB_OUTPUT
33+
python scripts/release-verdure.py --list-boards --json >> $GITHUB_OUTPUT
34+
echo "EOF" >> $GITHUB_OUTPUT
3335
3436
- id: select
3537
name: Select variants based on changes

0 commit comments

Comments
 (0)