13 lines
509 B
YAML
13 lines
509 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: semantic-release
|
|
image: entwico/semantic-release
|
|
settings:
|
|
mode: release # "release" means the actual release and "predict" means to generate the version in dry run to use it e.g. before build
|
|
version_file: .release-version # the file where the version will be persisted, defaults to .release-version
|
|
git_user_name: Sthope # semantic release committer name (git config user.name)
|
|
git_login: sthope
|
|
git_password:
|
|
from_secret: sthopegit |