Merge pull request #1557 from talentedmrjones/europa-engine-exec-secret-env

implemented ability to pass #Secret as env var
This commit is contained in:
Andrea Luzzardi
2022-02-15 16:30:13 -07:00
committed by GitHub
8 changed files with 385 additions and 80 deletions

View File

@@ -17,7 +17,7 @@ package engine
args: [...string]
// Environment variables
env: [key=string]: string
env: [key=string]: string | #Secret
// Working directory
workdir: string | *"/"

View File

@@ -55,7 +55,7 @@ import (
// Environment variables
// Example: {"DEBUG": "1"}
env: [string]: string
env: [string]: string | engine.#Secret
// Working directory for the command
// Example: "/src"