Skip to content

Commit

Permalink
CI/CD: fix single quote to be included in job output
Browse files Browse the repository at this point in the history
  • Loading branch information
ivard committed Nov 8, 2024
1 parent e2c9251 commit a567a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/status-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
- name: Dynamically generate matrix for running integration tests
id: set-matrix
# This oneliner gets every test zip generated by Fastlane and writes this as output to GitHub. This is used for the matrix in the integration-test-ios job below.
run: echo "matrix='$(for file in $(ls ./fastlane/build/*.zip); do basename "$file"; done | jq -R . | jq -sc .)'" >> $GITHUB_OUTPUT
run: echo "matrix=$(for file in $(ls ./fastlane/build/*.zip); do basename "$file"; done | jq -R . | jq -sc .)" >> $GITHUB_OUTPUT
build-integration-test-android:
runs-on: ubuntu-latest
needs: build-irmagobridge-android
Expand Down

0 comments on commit a567a58

Please sign in to comment.