Skip to content

Commit

Permalink
fix: forgot json syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Javier Ruiz committed Feb 14, 2025
1 parent cd50784 commit 3b46bb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-android-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Generate matrix with demos
id: set-matrix
run: |
matrix="$(echo demos/android/*/MASTG-DEMO-* | tr ' ' ',')"
echo "matrix=$matrix" >> $GITHUB_OUTPUT
matrix="$(echo demos/android/*/MASTG-DEMO-* | sed 's/ /","/g')"
echo "matrix={\"demo\":[\"$matrix\"]}" >> $GITHUB_OUTPUT
- name: Print matrix
run: echo "${{ steps.set-matrix.outputs.matrix }}"
Expand Down

0 comments on commit 3b46bb6

Please sign in to comment.