From cd24930e0fa6dfdc917ba7926e77f979186537a5 Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Fri, 30 Aug 2024 12:41:01 -0400 Subject: [PATCH] wip: fixes syntax --- forge/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge/actions/setup/action.yml b/forge/actions/setup/action.yml index 635553fa..09c2da61 100644 --- a/forge/actions/setup/action.yml +++ b/forge/actions/setup/action.yml @@ -67,7 +67,7 @@ runs: USERNAME=$(echo "$SECRET" | jq -r .username) PASSWORD=$(echo "$SECRET" | jq -r .password) - if [[ "$USERNAME" == "null" || "$PASSWORD" == "null"]]; then + if [[ "$USERNAME" == "null" || "$PASSWORD" == "null" ]]; then echo "Error: the docker provider secret must map secret values to 'username' and 'password'" exit 1 fi