Skip to content

Commit

Permalink
Actually fix S3 upload in GH Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Jan 25, 2025
1 parent 447ea66 commit 41c6512
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ jobs:
needs: [check, test, build]
runs-on: ubuntu-22.04
steps:
- name: Install AWS CLI
uses: unfor19/install-aws-cli-action@v1
- name: Download artifacts (x86_64-linux)
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -190,6 +192,7 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_S3_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ vars.R2_S3_REGION }}
AWS_REQUEST_CHECKSUM_CALCULATION: WHEN_REQUIRED
AWS_RESPONSE_CHECKSUM_CALCULATION: WHEN_REQUIRED
S3_ENDPOINT: ${{ secrets.R2_S3_ENDPOINT }}
- name: Upload to S3
run: |
Expand All @@ -208,5 +211,6 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_S3_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ vars.R2_S3_REGION }}
AWS_REQUEST_CHECKSUM_CALCULATION: WHEN_REQUIRED
AWS_RESPONSE_CHECKSUM_CALCULATION: WHEN_REQUIRED
S3_ENDPOINT: ${{ secrets.R2_S3_ENDPOINT }}

0 comments on commit 41c6512

Please sign in to comment.