Skip to content

Commit 8d3a128

Browse files
author
Jeevan Revaneppa Hirethanad
committed
Fix genarte_build.py building issues
1 parent 27de542 commit 8d3a128

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ jobs:
99
generate-matrix:
1010
runs-on: ubuntu-latest
1111
outputs:
12-
matrix: ${{ steps.mk.outputs.matrix }}
12+
matrix: ${{ steps.set-matrix.outputs.matrix }}
1313
steps:
1414
- uses: actions/checkout@v5
1515

1616
- name: Generate dynamic matrix from templates.xml
17-
run: .github\workflows\scripts\generate_matrix.py
17+
id: set-matrix
18+
run: |
19+
matrix=$(python3 .github/workflows/scripts/generate_app_build_matrix.py)
20+
echo "matrix=$matrix" >> $GITHUB_OUTPUT
1821
1922
get-sdk:
2023
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)