Skip to content

Commit

Permalink
wip: fixes syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Aug 30, 2024
1 parent 70b21d8 commit cd24930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd24930

Please sign in to comment.