We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab5c5af + fceda46 commit dbe36b6Copy full SHA for dbe36b6
.github/workflows/release.yml
@@ -132,14 +132,12 @@ jobs:
132
path: artifacts/
133
merge-multiple: true
134
135
- - name: Authenticate with AWS
136
- uses: aws-actions/configure-aws-credentials@v4
137
- with:
138
- aws-region: 'us-east-2'
139
- aws-access-key-id: ${{ secrets.S3_DUCKDB_STAGING_ID }}
140
- aws-secret-access-key: ${{ secrets.S3_DUCKDB_STAGING_KEY }}
141
-
142
- name: Upload Artifacts
+ 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 }}
+
143
run: |
144
aws s3 cp artifacts ${{ needs.workflow_state.outputs.s3_url }} --recursive
145
0 commit comments