@@ -57,8 +57,6 @@ switch between ascending or descending order, select **Sort order**.
## Create a release
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/32812) in GitLab 12.9. Releases can be created directly in the GitLab UI.
You can create a release:
-[Using a job in your CI/CD pipeline](#creating-a-release-by-using-a-cicd-job).
...
...
@@ -68,13 +66,13 @@ You can create a release:
We recommend creating a release as one of the last steps in your CI/CD pipeline.
### Create a release in the Releases page
Prerequisites:
- You must have at least the Developer role for a project. For more information, read
[Release permissions](#release-permissions).
### Create a release in the Releases page
To create a release in the Releases page:
1. On the top bar, select **Menu > Projects** and find your project.
...
...
@@ -124,8 +122,11 @@ You can create a release directly as part of the GitLab CI/CD pipeline by using
The release is created only if the job processes without error. If the API returns an error during
release creation, the release job fails.
For examples of how you can create a release of your application in the CI/CD pipeline,
see [Release CI/CD examples](release_cicd_examples.md).
Methods for creating a release using a CI/CD job include:
-[Create a release when a Git tag is created](release_cicd_examples.md#create-a-release-when-a-git-tag-is-created).
-[Create a release when a commit is merged to the default branch](release_cicd_examples.md#create-a-release-when-a-commit-is-merged-to-the-default-branch).
-[Create release metadata in a custom script](release_cicd_examples.md#create-release-metadata-in-a-custom-script).
when:never# Do not run this job when a tag is created manually
-if:$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH# Run this job when commits are pushed or merged to the default branch
script:
-echo "running release_job for $TAG"
release:
name:'Release$TAG'
description:'Createdusingtherelease-cli$EXTRA_DESCRIPTION'# $EXTRA_DESCRIPTION and the $TAG
tag_name:'$TAG'# variables must be defined elsewhere
ref:'$CI_COMMIT_SHA'# in the pipeline. For example, in the
milestones:# prepare_job
-'m1'
-'m2'
-'m3'
released_at:'2020-07-15T08:00:00Z'# Optional, is auto generated if not defined, or can use a variable.
assets:
links:
-name:'asset1'
url:'https://example.com/assets/1'
-name:'asset2'
url:'https://example.com/assets/2'
filepath:'/pretty/url/1'# optional
link_type:'other'# optional
```
## Skip multiple pipelines when creating a release
Creating a release using a CI/CD job could potentially trigger multiple pipelines if the associated tag does not exist already. To understand how this might happen, consider the following workflows:
- Tag first, release second:
1. A tag is created via UI or pushed.
1. A tag pipeline is triggered, and runs `release` job.
1. A release is created.
- Release first, tag second:
1. A pipeline is triggered when commits are pushed or merged to default branch. The pipeline runs `release` job.