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.
1 parent e713b87 commit 14153dcCopy full SHA for 14153dc
.github/workflows/interop.yml
@@ -18,10 +18,14 @@ jobs:
18
with:
19
python-version: 3.8
20
- run: echo "foobar" > result.json
21
- - name: Configure S3 credentials
22
- uses: aws-actions/configure-aws-credentials@v4
23
- with:
24
- aws-access-key-id: ${{ secrets.BACKBLAZE_KEY_ID }}
25
- aws-secret-access-key: ${{ secrets.BACKBLAZE_APPLICATION_KEY }}
26
- aws-region: us-east-2 # what the hell
27
- - run: aws s3 ls --endpoint-url=https://s3.us-west-000.backblazeb2.com
+ - name: Install b2 cli
+ uses: sylwit/[email protected]
+ env:
+ B2_APPLICATION_KEY_ID: ${{ secrets.BACKBLAZE_KEY_ID }}
+ B2_APPLICATION_KEY: ${{ secrets.BACKBLAZE_APPLICATION_KEY }}
+ - name: upload a file
+ run: |
28
+ ls -al
29
+ b2 sync ./result.json b2://quic-interop-runner/
30
+
31
0 commit comments