mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-14 09:40:38 +00:00
34 lines
723 B
YAML
34 lines
723 B
YAML
|
---
|
||
|
when:
|
||
|
- event: [pull_request, tag]
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
|
||
|
steps:
|
||
|
changelog-generate:
|
||
|
image: quay.io/thegeeklab/git-chglog
|
||
|
commands:
|
||
|
- git fetch -tq
|
||
|
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${CI_COMMIT_TAG:---next-tag unreleased unreleased}
|
||
|
|
||
|
changelog-format:
|
||
|
image: quay.io/thegeeklab/alpine-tools
|
||
|
commands:
|
||
|
- prettier CHANGELOG.md
|
||
|
- prettier -w CHANGELOG.md
|
||
|
|
||
|
publish-github:
|
||
|
image: docker.io/plugins/github-release
|
||
|
settings:
|
||
|
api_key:
|
||
|
from_secret: github_token
|
||
|
note: CHANGELOG.md
|
||
|
overwrite: true
|
||
|
title: ${CI_COMMIT_TAG}
|
||
|
when:
|
||
|
- event: [tag]
|
||
|
|
||
|
depends_on:
|
||
|
- test
|