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 27de542 commit 8d3a128Copy full SHA for 8d3a128
.github/workflows/CI.yml
@@ -9,12 +9,15 @@ jobs:
9
generate-matrix:
10
runs-on: ubuntu-latest
11
outputs:
12
- matrix: ${{ steps.mk.outputs.matrix }}
+ matrix: ${{ steps.set-matrix.outputs.matrix }}
13
steps:
14
- uses: actions/checkout@v5
15
16
- name: Generate dynamic matrix from templates.xml
17
- run: .github\workflows\scripts\generate_matrix.py
+ id: set-matrix
18
+ run: |
19
+ matrix=$(python3 .github/workflows/scripts/generate_app_build_matrix.py)
20
+ echo "matrix=$matrix" >> $GITHUB_OUTPUT
21
22
get-sdk:
23
0 commit comments