Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 353 Bytes

env_vars.md

File metadata and controls

15 lines (14 loc) · 353 Bytes

Environment Variables

You can set environment variables in your job definition. They will be available during the run phase of the container, not during build.

{
    "version": 1,
    "jobs": [{
        ...
        "environment": {
            "SOME_ENV_VAR": "My value",
            "ANOTHER_ENV_VAR": "Another value"
        }
    }]
}