Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilKWarmdahl committed Nov 19, 2024
1 parent 5220362 commit 3ddd097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if [ $ec -eq "0" ]; then
echo "Objects found ${{ env.OUTFILE }}"
exit 1
elif [ $ec -ne "1"]; then
elif [ $ec -ne "1" ]; then
echo "$output"
fi
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Check if version exist in s3
run: |
set +e
$output = aws s3 ls "${{ env.OUTFILE }}"
$output = aws s3 ls ${{ env.OUTFILE }}
$ec = $LastExitCode
if ( $ec -eq "0" ){
echo "Objects found ${{ env.OUTFILE }}"
Expand Down

0 comments on commit 3ddd097

Please sign in to comment.