From c6be02db8399b1cdde274bc99a15e8aca3143bb9 Mon Sep 17 00:00:00 2001 From: yair Date: Tue, 20 Feb 2024 14:55:21 +0200 Subject: [PATCH] checking .env file --- sail/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sail/action.yml b/sail/action.yml index 0aaed40..f95b046 100644 --- a/sail/action.yml +++ b/sail/action.yml @@ -56,7 +56,7 @@ runs: echo "OCEAN__PORT__CLIENT_ID=${{ inputs.port_client_id }}" >> .env echo "OCEAN__PORT__CLIENT_SECRET=${{ inputs.port_client_secret }}" >> .env - INTEGRATION_CONFIG=$(echo ${{ inputs.integration_config }} | jq -r 'to_entries[] | "OCEAN__INTEGRATION__CONFIG__\(.key)=\(.value)"'') + INTEGRATION_CONFIG=$(echo ${{ inputs.integration_config }} | jq -r 'to_entries[] | "OCEAN__INTEGRATION__CONFIG__\(.key)=\(.value)"') for CONFIG in $INTEGRATION_CONFIG; do echo $CONFIG >> .env done