We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b204f6 + dcbccef commit 3c624daCopy full SHA for 3c624da
.github/workflows/ci.yml
@@ -32,4 +32,9 @@ jobs:
32
- name: Upload to S3 bucket
33
if: github.event_name == 'push'
34
run: |
35
- aws s3 cp package-minimal/target/openmessaging-benchmark-0.0.1-SNAPSHOT-bin.tar.gz s3://vectorized-public/dependencies/omb/omb_minimal_${{ github.sha }}.tar.gz
+ aws s3 cp package-minimal/target/openmessaging-benchmark-0.0.1-SNAPSHOT-bin.tar.gz s3://vectorized-public/dependencies/omb/omb_minimal_${{ github.sha }}.tar.gz --acl public-read
36
+
37
+ - name: Upload to S3 bucket (dry-run)
38
+ if: github.event_name != 'push'
39
+ run: |
40
+ aws s3 cp package-minimal/target/openmessaging-benchmark-0.0.1-SNAPSHOT-bin.tar.gz s3://vectorized-public/dependencies/omb/omb_minimal_${{ github.sha }}.tar.gz --acl public-read --dryrun
0 commit comments