From 312ff3272ae6f6c3ac4ff53ea2786504f75ff7cc Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Tue, 14 May 2024 14:53:39 -0300 Subject: [PATCH] chore: Fix logs upload to S3 As e2es were moved to a remote runner, they no longer inherit the env from github, so EARTHLY_BUILD_ARGS were not passed, so the target folder for uploading logs was unset. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59aeb83b195..23578fefb6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,6 +113,7 @@ jobs: set -eux cd ./yarn-project/end-to-end/ export FORCE_COLOR=1 + export EARTHLY_BUILD_ARGS="${{ env.EARTHLY_BUILD_ARGS }}" ../../scripts/earthly-ci -P \ --secret AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }} \ --secret AWS_SECRET_ACCESS_KEY=${{ secrets.AWS_SECRET_ACCESS_KEY }} \