From a6aa18cfcc221e9ae2692dec03a39cb294568e4e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Sat, 29 Jul 2023 13:33:37 +0200 Subject: [PATCH] Add missing env variable. The variables are not used in the context of docker triggering. I prefer set dummy variables instead of use a default value in the code to be sure that the variable are defined when needed. --- .github/workflows/releaseNigthly.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/releaseNigthly.yml b/.github/workflows/releaseNigthly.yml index a3a3852..9f194f8 100644 --- a/.github/workflows/releaseNigthly.yml +++ b/.github/workflows/releaseNigthly.yml @@ -240,6 +240,9 @@ jobs: Trigger_Docker: needs: [Linux] runs-on: ubuntu-22.04 + env: + PLATFORM_TARGET: LINUX_DOCKER_TRIGGER + OS_NAME: LINUX_DOCKER_TRIGGER steps: - name: Checkout code uses: actions/checkout@v3