[GitLab CI/CD] Print out the value of environment variables in CI

introduction

  • It is mainly used to print and view predefined environment variables, and the written scripts are more general.
image: gitlab_ci_image:latest

stages:
  - job_name

job_name:
  stage: job_name
  tags:
    - python
  script:
    - export

Guess you like

Origin blog.csdn.net/shiwanghualuo/article/details/130007604