Loading nfv-api-emulators/.gitlab-ci.yml 0 → 100644 +19 −0 Original line number Diff line number Diff line # Git Tag Triggered Deployment Pipeline Configuration # This YAML file defines a GitLab CI/CD pipeline with a single deploy stage. # The deployment stage is triggered only when a Git tag is pushed to the repository. # The script within the deploy stage runs the "run_emulator.sh" script. stages: - deploy deploy: stage: deploy # The pipeline runs only when a git tag is pushed. only: - 2.0-devel - cicd_devel script: - ./run_emulator.sh Loading
nfv-api-emulators/.gitlab-ci.yml 0 → 100644 +19 −0 Original line number Diff line number Diff line # Git Tag Triggered Deployment Pipeline Configuration # This YAML file defines a GitLab CI/CD pipeline with a single deploy stage. # The deployment stage is triggered only when a Git tag is pushed to the repository. # The script within the deploy stage runs the "run_emulator.sh" script. stages: - deploy deploy: stage: deploy # The pipeline runs only when a git tag is pushed. only: - 2.0-devel - cicd_devel script: - ./run_emulator.sh