github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/gitlab/yaml/testdata/job_keywords/release/example-1.yaml (about) 1 # https://docs.gitlab.com/ee/ci/yaml/#release 2 3 release_job: 4 stage: release 5 image: registry.gitlab.com/gitlab-org/release-cli:latest 6 rules: 7 - if: $CI_COMMIT_TAG # Run this job when a tag is created manually 8 script: 9 - echo "Running the release job." 10 release: 11 tag_name: $CI_COMMIT_TAG 12 name: 'Release $CI_COMMIT_TAG' 13 description: 'Release created using the release-cli.'