Skip to content

Commit

Permalink
export env vars correctlty
Browse files Browse the repository at this point in the history
  • Loading branch information
osalpekar committed Sep 12, 2023
1 parent 7b4d764 commit 66505d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-s3-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
conda activate ./run_env
# Set Envs
export AWS_ACCESS_KEY_ID = ${SECRET_AWS_ACCESS_KEY_ID}
export AWS_SECRET_ACCESS_KEY = ${SECRET_AWS_SECRET_ACCESS_KEY}
export AWS_ACCESS_KEY_ID="${SECRET_AWS_ACCESS_KEY_ID}"
export AWS_SECRET_ACCESS_KEY="${SECRET_AWS_SECRET_ACCESS_KEY}"
# Install requirements
pip install -r s3_management/requirements.txt
Expand Down

0 comments on commit 66505d7

Please sign in to comment.