From 2d06dde82825e2793722ee9878fa0724782114fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20M=C3=BChleisen?= Date: Wed, 29 Oct 2025 12:51:29 +0200 Subject: [PATCH] moving staging to cf (1.4) This is a backport of the PR #433 to `v1.4-andium` stable branch. --- .github/workflows/Java.yml | 1 + scripts/upload-assets-to-staging.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Java.yml b/.github/workflows/Java.yml index 16ad0bb06..ffa477b96 100644 --- a/.github/workflows/Java.yml +++ b/.github/workflows/Java.yml @@ -10,6 +10,7 @@ on: default: 'false' type: 'string' env: + AWS_ENDPOINT_URL: ${{ secrets.S3_DUCKDB_STAGING_ENDPOINT }} AWS_ACCESS_KEY_ID: ${{ secrets.S3_DUCKDB_STAGING_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_DUCKDB_STAGING_KEY }} diff --git a/scripts/upload-assets-to-staging.sh b/scripts/upload-assets-to-staging.sh index fb680ae73..4f582ae9f 100755 --- a/scripts/upload-assets-to-staging.sh +++ b/scripts/upload-assets-to-staging.sh @@ -61,5 +61,5 @@ fi for var in "${@: 2}" do - aws s3 cp $var s3://duckdb-staging/$TARGET/$GITHUB_REPOSITORY/$FOLDER/ $DRY_RUN_PARAM --region us-east-2 + aws s3 cp $var s3://duckdb-staging/$TARGET/$GITHUB_REPOSITORY/$FOLDER/ $DRY_RUN_PARAM done