Skip to content

Commit

Permalink
add auth for aws and google
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Oct 17, 2024
1 parent 9a2c8fe commit 8a7f27f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/run_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ jobs:
working-directory: ${{ inputs.working-directory }}
cache-key: run-notebooks

- name: 'Authenticate to Google Cloud'
id: 'auth'
uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

- name: Install dependencies
run: |
poetry install --with dev,test
Expand Down

0 comments on commit 8a7f27f

Please sign in to comment.