Skip to content

Commit cfa1956

Browse files
Merge pull request #3 from dima-asana/patch-2
fix bash syntax in #2
2 parents 0605163 + 64cdaed commit cfa1956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
COMMERCIAL_LAMBDA_FUNCTION_URL: "https://s5mfys5te5aks7kw7p54vmbhvu0vyqlw.lambda-url.us-east-1.on.aws/"
3535
FEDRAMP_LAMBDA_FUNCTION_URL: "https://x4ltsnejil7dy6quaim6pn2iue0ewclt.lambda-url.us-east-1.on.aws/"
3636
run: |
37-
if [[ ${{ inputs.partition }}== "fedramp" ]]; then
37+
if [[ ${{ inputs.partition }} -eq "fedramp" ]]; then
3838
LAMBDA_FUNCTION_URL=$FEDRAMP_LAMBDA_FUNCTION_URL
3939
else
4040
LAMBDA_FUNCTION_URL=$COMMERCIAL_LAMBDA_FUNCTION_URL

0 commit comments

Comments
 (0)