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.
This commit is contained in:
parent
58f9ede10a
commit
a6aa18cfcc
|
@ -240,6 +240,9 @@ jobs:
|
||||||
Trigger_Docker:
|
Trigger_Docker:
|
||||||
needs: [Linux]
|
needs: [Linux]
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
env:
|
||||||
|
PLATFORM_TARGET: LINUX_DOCKER_TRIGGER
|
||||||
|
OS_NAME: LINUX_DOCKER_TRIGGER
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
Loading…
Reference in New Issue