From 14153dcbce77c98c36058e811bfcba86ddcc15c2 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 6 Oct 2023 15:20:12 +0700 Subject: [PATCH] try the action --- .github/workflows/interop.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index d6234c70..7df4e89f 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -18,10 +18,14 @@ jobs: 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 + - name: Install b2 cli + uses: sylwit/install-b2-cli-action@v1.0.0 + env: + B2_APPLICATION_KEY_ID: ${{ secrets.BACKBLAZE_KEY_ID }} + B2_APPLICATION_KEY: ${{ secrets.BACKBLAZE_APPLICATION_KEY }} + - name: upload a file + run: | + ls -al + b2 sync ./result.json b2://quic-interop-runner/ + +