26 lines
579 B
YAML
26 lines
579 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: changelog
|
|
image: quay.io/thegeeklab/git-sv
|
|
commands:
|
|
- git sv current-version
|
|
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
|
|
- cat CHANGELOG.md
|
|
|
|
- name: publish-gitea
|
|
image: quay.io/thegeeklab/wp-gitea-release
|
|
settings:
|
|
api_key:
|
|
from_secret: gitea_token
|
|
base_url: https://gitea.rknet.org
|
|
note: CHANGELOG.md
|
|
title: ${CI_COMMIT_TAG}
|
|
when:
|
|
- event: [tag]
|