try accessing Backblaze #3572
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: interop | |
on: | |
push: | |
branches: ["s3-setup"] | |
jobs: | |
backblaze: | |
runs-on: ubuntu-latest | |
# These permissions are needed to interact with GitHub's OIDC Token endpoint. | |
permissions: | |
id-token: write | |
contents: read | |
env: | |
LOGNAME: ${{ needs.config.outputs.logname }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- run: echo "foobar" > result.json | |
- name: Configure S3 credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.BACKBLAZE_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.BACKBLAZE_APPLICATION_KEY }} | |
aws-region: us-east-2 # what the hell | |
- run: aws s3 ls --endpoint-url=https://s3.us-west-000.backblazeb2.com |