ci: add changelog generation to ci
This commit is contained in:
parent
87c324a8c4
commit
6a7374181c
1 changed files with 22 additions and 1 deletions
|
@ -73,6 +73,25 @@ publish-artifacts:
|
||||||
curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ds4/system.json "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/latest/system.json"
|
curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file ds4/system.json "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/ds4/latest/system.json"
|
||||||
rules:
|
rules:
|
||||||
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
|
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||||
|
- if: $CI_COMMIT_TAG
|
||||||
|
when: manual
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
stage: publish
|
||||||
|
before_script:
|
||||||
|
- yarn install --immutable
|
||||||
|
script:
|
||||||
|
- yarn changelog
|
||||||
|
cache:
|
||||||
|
<<: *global_cache
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- CHANGELOG.md
|
||||||
|
expire_in: 1 week
|
||||||
|
rules:
|
||||||
|
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||||
|
- if: $CI_COMMIT_TAG
|
||||||
|
when: manual
|
||||||
|
|
||||||
.release-template: &release-template
|
.release-template: &release-template
|
||||||
stage: release
|
stage: release
|
||||||
|
@ -123,9 +142,11 @@ release:
|
||||||
- echo 'release job'
|
- echo 'release job'
|
||||||
rules:
|
rules:
|
||||||
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
|
- if: '$CI_COMMIT_TAG =~ /^[0-9]+\.[0-9]+\.[0-9]+$/'
|
||||||
|
- if: $CI_COMMIT_TAG
|
||||||
|
when: manual
|
||||||
release:
|
release:
|
||||||
tag_name: $CI_COMMIT_TAG
|
tag_name: $CI_COMMIT_TAG
|
||||||
description: "# Changelog"
|
description: "./CHANGELOG.md"
|
||||||
assets:
|
assets:
|
||||||
links:
|
links:
|
||||||
- name: "ds4.zip"
|
- name: "ds4.zip"
|
||||||
|
|
Loading…
Add table
Reference in a new issue