Skip to content

Commit b11b169

Browse files
dannylongeuaychristophwitzko
authored andcommitted
docs(README): 📝 add section on using ci_job_token
1 parent 96a103b commit b11b169

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

README.md

+29-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ You can set the GitLab token via the `GITLAB_TOKEN` environment variable or the
103103

104104
.gitlab-ci.yml
105105
```yml
106-
stages:
106+
stages:
107107
# other stages
108108
- release
109109
@@ -119,6 +119,34 @@ release:
119119
- semantic-release # Add --allow-no-changes if you want to create a release for each push
120120
```
121121

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
126+
127+
.gitlab-ci.yml
128+
```yml
129+
variables:
130+
GIT_STRATEGY: clone
131+
132+
stages:
133+
# other stages
134+
- release
135+
136+
release:
137+
image:
138+
name: registry.gitlab.com/go-semantic-release/semantic-release:latest
139+
entrypoint: [""]
140+
stage: release
141+
# 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+
122150
### Releasing a Go application with GitLab CI
123151
The full example can be found at https://gitlab.com/go-semantic-release/example-go-application.
124152

0 commit comments

Comments
 (0)