From efe25337e9e880426178aeed9fa618386a3f7f78 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Tue, 3 Sep 2024 18:06:37 +0200 Subject: [PATCH] chore(actions): different gh secrets Signed-off-by: rjshrjndrn --- .github/composite-actions/update-keys/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/composite-actions/update-keys/action.yml b/.github/composite-actions/update-keys/action.yml index f96021f25..a2fa1c660 100644 --- a/.github/composite-actions/update-keys/action.yml +++ b/.github/composite-actions/update-keys/action.yml @@ -37,10 +37,10 @@ runs: run: | cd scripts/helmcharts/ yq e -i '.global.domainName = strenv(DOMAIN_NAME)' vars.yaml - yq e -i '.global.assistKey = strenv(JWT_SECRET)' vars.yaml - yq e -i '.global.assistJWTSecret = strenv(JWT_SECRET)' vars.yaml + yq e -i '.global.assistKey = strenv(ASSIST_KEY)' vars.yaml + yq e -i '.global.assistJWTSecret = strenv(ASSIST_JWT_SECRET)' vars.yaml yq e -i '.global.jwtSecret = strenv(JWT_SECRET)' vars.yaml - yq e -i '.global.jwtSpotSecret = strenv(JWT_SECRET)' vars.yaml + yq e -i '.global.jwtSpotSecret = strenv(JWT_SPOT_SECRET)' vars.yaml yq e -i '.global.enterpriseEditionLicense = strenv(LICENSE_KEY)' vars.yaml yq e -i '.global.s3.accessKey = strenv(MINIO_ACCESS_KEY)' vars.yaml yq e -i '.global.s3.secretKey = strenv(MINIO_SECRET_KEY)' vars.yaml