From 5a6d9b0f4439cbf81db8a09f6748527b452e787b Mon Sep 17 00:00:00 2001 From: Schneems Date: Tue, 2 Jul 2024 16:03:44 -0500 Subject: [PATCH] Fix output directory --- .github/workflows/build_jruby.yml | 4 ++-- .github/workflows/build_ruby.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_jruby.yml b/.github/workflows/build_jruby.yml index 3bac142..9ee44d3 100644 --- a/.github/workflows/build_jruby.yml +++ b/.github/workflows/build_jruby.yml @@ -47,7 +47,7 @@ jobs: run: cargo run --bin jruby_check -- --version ${{inputs.jruby_version}} --base-image ${{matrix.base_image}} --arch amd64 | tee $GITHUB_STEP_SUMMARY - name: Upload Ruby runtime archive to S3 dry run if: (inputs.dry_run) - run: aws s3 sync ./builds "s3://${S3_BUCKET}" --dryrun + run: aws s3 sync ./output "s3://${S3_BUCKET}" --dryrun - name: Upload Ruby runtime archive to S3 production if: (!inputs.dry_run) - run: aws s3 sync ./builds "s3://${S3_BUCKET}" + run: aws s3 sync ./output "s3://${S3_BUCKET}" diff --git a/.github/workflows/build_ruby.yml b/.github/workflows/build_ruby.yml index 58e43c1..e9a49bf 100644 --- a/.github/workflows/build_ruby.yml +++ b/.github/workflows/build_ruby.yml @@ -52,7 +52,7 @@ jobs: run: cargo run --bin ruby_check -- --version ${{inputs.ruby_version}} --base-image ${{matrix.base_image}} --arch ${{matrix.arch}} | tee $GITHUB_STEP_SUMMARY - name: Upload Ruby runtime archive to S3 dry run if: (inputs.dry_run) - run: aws s3 sync ./builds "s3://${S3_BUCKET}" --dryrun + run: aws s3 sync ./output "s3://${S3_BUCKET}" --dryrun - name: Upload Ruby runtime archive to S3 production if: (!inputs.dry_run) - run: aws s3 sync ./builds "s3://${S3_BUCKET}" + run: aws s3 sync ./output "s3://${S3_BUCKET}"