Difference between revisions of "GitLab CI: artifacts:"
Jump to navigation
Jump to search
Line 14: | Line 14: | ||
== Examples == | == Examples == | ||
https://docs.gitlab.com/ee/ci/variables/#pass-an-environment-variable-to-another-job | https://docs.gitlab.com/ee/ci/variables/#pass-an-environment-variable-to-another-job | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | deploy: | + | build: |
− | + | stage: build | |
− | + | script: | |
− | + | - echo "BUILD_VARIABLE=value_from_build_job" >> build.env | |
− | + | artifacts: | |
− | + | [[reports:]] | |
− | + | [[dotenv:]] build.env | |
− | + | ||
+ | deploy: | ||
+ | stage: deploy | ||
+ | variables: | ||
+ | BUILD_VARIABLE: value_from_deploy_job | ||
+ | script: | ||
+ | - echo "$BUILD_VARIABLE" # Output is: 'value_from_build_job' due to precedence | ||
+ | environment: production | ||
== Related == | == Related == |
Revision as of 11:47, 8 December 2022
artifacts: name: "Your name $CI_COMMIT_SHA" paths: - mycv.pdf expire_in: 1 week
Examples
https://docs.gitlab.com/ee/ci/variables/#pass-an-environment-variable-to-another-job
build: stage: build script: - echo "BUILD_VARIABLE=value_from_build_job" >> build.env artifacts: reports: dotenv: build.env deploy: stage: deploy variables: BUILD_VARIABLE: value_from_deploy_job script: - echo "$BUILD_VARIABLE" # Output is: 'value_from_build_job' due to precedence environment: production
Related
See also
Advertising: