From 1bdd516bc73bf5c6ca1eb8e217fd83ea0af24b7c Mon Sep 17 00:00:00 2001 From: Olivier Lamothe Date: Thu, 26 Oct 2023 13:09:26 -0400 Subject: [PATCH] ci(cli): fix release workflow (#1338) https://coveord.atlassian.net/browse/CDX-1497 --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3242c1c4b2..5f87ee5259 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,19 @@ on: type: boolean default: false required: false +env: + # Platform environment to log into for the e2e tests. + PLATFORM_ENV: 'stg' + # Username used to log into the organization whose ID is stored in the ORG_ID variable + PLATFORM_USER_NAME: ${{ secrets.PLATFORM_USER_NAME }} + # Password used to log into the organization whose ID is stored in the ORG_ID variable + PLATFORM_USER_PASSWORD: ${{ secrets.PLATFORM_USER_PASSWORD }} + # API key to delete all the API keys created by the e2e tests + PLATFORM_API_KEY: ${{ secrets.PLATFORM_API_KEY }} + # ID of the organization to log into for the e2e tests + ORG_ID: ${{ secrets.ORG_ID }} + # Passphrase use to encode/decode cliConfig + E2E_TOKEN_PASSPHRASE: ${{ secrets.E2E_TOKEN_PASSPHRASE }} jobs: e2e-setup-login: