You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+29-1
Original file line number
Diff line number
Diff line change
@@ -103,7 +103,7 @@ You can set the GitLab token via the `GITLAB_TOKEN` environment variable or the
103
103
104
104
.gitlab-ci.yml
105
105
```yml
106
-
stages:
106
+
stages:
107
107
# other stages
108
108
- release
109
109
@@ -119,6 +119,34 @@ release:
119
119
- semantic-release # Add --allow-no-changes if you want to create a release for each push
120
120
```
121
121
122
+
#### Job Token
123
+
If you do not provide a PAT the [job token](https://docs.gitlab.com/ee/ci/jobs/ci_job_token.html) will be used.
124
+
This restricted token can create releases but not read commits. The [git strategy](https://docs.gitlab.com/ee/ci/runners/configure_runners.html#git-strategy)
125
+
must be set to clone so that we can read the commits from the repository. See example below
# when: manual # Add this if you want to manually create releases
142
+
only:
143
+
- master
144
+
script:
145
+
- semantic-release
146
+
# - semantic-release --allow-no-changes # create a release for each push
147
+
# - semantic-release --provider gitlab --provider-opt log_order=ctime # traverse commits by committer time (commits in merge requests will affect the calculated version)
148
+
```
149
+
122
150
### Releasing a Go application with GitLab CI
123
151
The full example can be found at https://gitlab.com/go-semantic-release/example-go-application.
0 commit comments