From a567a58b23a0e6ae610bbd9f814e7178e8fd295d Mon Sep 17 00:00:00 2001 From: Ivar Derksen Date: Fri, 8 Nov 2024 14:56:14 +0100 Subject: [PATCH] CI/CD: fix single quote to be included in job output --- .github/workflows/status-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/status-checks.yml b/.github/workflows/status-checks.yml index fa364c7c..7bc26f8e 100644 --- a/.github/workflows/status-checks.yml +++ b/.github/workflows/status-checks.yml @@ -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