Skip to content

Commit c8d5bd7

Browse files
committed
Change if statement to match powershell syntax
1 parent 801d553 commit c8d5bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- name: Check if version exist in s3
106106
run: |
107107
set +e
108-
output=$(aws s3 ls "${{ env.OUTFILE }}")
108+
$output=aws s3 ls "${{ env.OUTFILE }}"
109109
ec=$?
110110
if ( $ec -eq "0" ){
111111
echo "Objects found ${{ env.OUTFILE }}"

0 commit comments

Comments
 (0)