From 641e3b5131d1b485d453ac39414819a59e9b1b6e Mon Sep 17 00:00:00 2001 From: Jack Rosenthal Date: Mon, 19 Feb 2024 13:34:34 -0700 Subject: [PATCH] ci: Add S3 secrets to environment --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 552e671..3a6ef1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,6 +80,9 @@ jobs: name: "Build Wheel" runs-on: ubuntu-22.04 if: github.event_name == 'push' + env: + S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }} + S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4