From eeaa497d6e31230eb7450c92e9f0a5a00e4fc211 Mon Sep 17 00:00:00 2001 From: Luis Montero Date: Thu, 28 Sep 2023 16:21:43 +0200 Subject: [PATCH] chore: add aws credentials setup in update notebooks --- .github/workflows/refresh-one-notebook.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/refresh-one-notebook.yaml b/.github/workflows/refresh-one-notebook.yaml index a5adf363b..f9fb0592b 100644 --- a/.github/workflows/refresh-one-notebook.yaml +++ b/.github/workflows/refresh-one-notebook.yaml @@ -144,6 +144,13 @@ jobs: sed -i 's|^deb http://archive|deb http://fr.archive|g' /etc/apt/sources.list apt update && apt install git git-lfs -y + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@8c3f20df09ac63af7b3ae3d7c91f105f857d8497 + 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: Checkout Code uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 with: