Skip to content

Commit

Permalink
Fix mani workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Holy committed Apr 6, 2021
1 parent 080f0b4 commit c19af61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
- name: Upload airy binary to S3
if: ${{ github.ref == 'refs/heads/develop') }} || startsWith(github.ref, 'refs/heads/release') || ${{ github.ref == 'refs/heads/main'}}
if: ${{ github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/release') || github.ref == 'refs/heads/main' }}
run: |
./scripts/upload-cli-binaries.sh ${GITHUB_REF##*/}
env:
Expand Down
2 changes: 1 addition & 1 deletion scripts/upload-cli-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ for os in "linux" "darwin" "windows"; do
aws s3 cp $airy_bin_sha_path "$s3_basepath/"
done

aws s3 cp ./VERSION s3://$bucket_name/stable.txt
aws s3 cp VERSION s3://$bucket_name/stable.txt

0 comments on commit c19af61

Please sign in to comment.