From 3a7d429f9cf043cb1da48006cad335e196bda93e Mon Sep 17 00:00:00 2001 From: Ivo Jimenez Date: Wed, 17 Dec 2025 08:50:26 -0700 Subject: [PATCH 1/2] ci: add `--acl` flag to `aws s3 cp` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3feb300..d6c4e3c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,4 +32,4 @@ jobs: - name: Upload to S3 bucket if: github.event_name == 'push' run: | - 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 From dcbccef62a536b7985ee7920ea2c380842463373 Mon Sep 17 00:00:00 2001 From: Ivo Jimenez Date: Wed, 17 Dec 2025 08:52:53 -0700 Subject: [PATCH 2/2] ci: add `--dryrun` to s3 push workflow --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6c4e3c9..b4be8205 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,8 @@ jobs: if: github.event_name == 'push' run: | 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 + + - name: Upload to S3 bucket (dry-run) + if: github.event_name != 'push' + run: | + 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