Update .gitlab-ci.yml file

This commit is contained in:
J. Secula
2025-06-05 13:07:48 +02:00
parent 8143cda4aa
commit 09048b0717

View File

@ -16,7 +16,7 @@
# This specific template is located at: # This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml
image: philippheuer/docker-gitlab-powershell image: debian
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- build - build
@ -25,6 +25,7 @@ stages: # List of stages for jobs, and their order of execution
create-release: # This job runs in the deploy stage. create-release: # This job runs in the deploy stage.
stage: release # It only runs when *both* jobs in the test stage complete successfully. stage: release # It only runs when *both* jobs in the test stage complete successfully.
environment: production environment: production
script: echo 'Creating release'
release: release:
tag_name: $CI_COMMIT_TAG tag_name: $CI_COMMIT_TAG
name: 'Release $CI_COMMIT_TAG' name: 'Release $CI_COMMIT_TAG'