From 3761d60f414e06226ea76b016547de064a74ade1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Mon, 29 May 2023 13:29:07 +0200 Subject: [PATCH] fix: add VALET_TOKEN_SECRET env var to ci e2e test suite --- .github/workflows/common-e2e.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/common-e2e.yml b/.github/workflows/common-e2e.yml index 974eff1cd..9586c8942 100644 --- a/.github/workflows/common-e2e.yml +++ b/.github/workflows/common-e2e.yml @@ -83,6 +83,7 @@ jobs: sed -i "s/AUTH_JWT_SECRET=/AUTH_JWT_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env sed -i "s/ENCRYPTION_SERVER_KEY=/ENCRYPTION_SERVER_KEY=$(openssl rand -hex 32)/g" packages/home-server/.env sed -i "s/PSEUDO_KEY_PARAMS_KEY=/PSEUDO_KEY_PARAMS_KEY=$(openssl rand -hex 32)/g" packages/home-server/.env + sed -i "s/VALET_TOKEN_SECRET=/VALET_TOKEN_SECRET=$(openssl rand -hex 32)/g" packages/home-server/.env echo "ACCESS_TOKEN_AGE=4" >> packages/home-server/.env echo "REFRESH_TOKEN_AGE=7" >> packages/home-server/.env echo "REVISIONS_FREQUENCY=5" >> packages/home-server/.env