From 10d817de82afdc6ff7ad4fdb38222156bebfe4b4 Mon Sep 17 00:00:00 2001 From: bjoepfeiffer Date: Tue, 6 Feb 2024 19:52:11 -0500 Subject: [PATCH] APP-14422: Wrap json output in quotes. --- .github/actions/frontend/runtime/e2e_prepare/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/frontend/runtime/e2e_prepare/action.yml b/.github/actions/frontend/runtime/e2e_prepare/action.yml index 59f7692..bdb63e6 100644 --- a/.github/actions/frontend/runtime/e2e_prepare/action.yml +++ b/.github/actions/frontend/runtime/e2e_prepare/action.yml @@ -55,4 +55,4 @@ runs: echo "artemis_account_subdomain=$(jq -r .[0].metadata.accountSubdomain < artemis-run.json)" >> $GITHUB_OUTPUT echo "artemis_account_id=$(jq -r .[0].id < artemis-run.json)" >> $GITHUB_OUTPUT echo "artemis_users=$(jq -c 'map((select(. | .type == "User")) | { tokenSecret: .metadata.token.tokenSecret, tokenCsrf: .metadata.token.tokenCsrf, groupName: .metadata.groupName })' < artemis-run.json)" >> $GITHUB_OUTPUT - echo "artemis_full_output=$(jq -c . < artemis-run.json)" >> $GITHUB_OUTPUT + echo "artemis_full_output='$(jq -c . < artemis-run.json)'" >> $GITHUB_OUTPUT