1c056ac05a
Adds a default configuration for git-cliff, enabling conventional commit parsing and changelog generation. Integrates GitLab CI by including the necessary pipeline templates for release management. These changes improve the project's commit management and automate the release notes generation process.
17 lines
268 B
YAML
17 lines
268 B
YAML
include:
|
|
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
|
- project: unboundsoftware/ci-templates
|
|
file: Release.gitlab-ci.yml
|
|
|
|
stages:
|
|
- build
|
|
|
|
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- build
|
|
- push
|
|
|