mirror of
https://github.com/thegeeklab/wait-for.git
synced 2024-11-09 22:40:41 +00:00
37 lines
737 B
YAML
37 lines
737 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
checksum:
|
|
image: quay.io/thegeeklab/alpine-tools
|
|
commands:
|
|
- sha256sum wait-for > sha256sum.txt
|
|
|
|
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
|
|
|
|
publish-github:
|
|
image: docker.io/plugins/github-release
|
|
settings:
|
|
api_key:
|
|
from_secret: github_token
|
|
files:
|
|
- wait-for
|
|
- sha256sum.txt
|
|
note: CHANGELOG.md
|
|
overwrite: true
|
|
title: ${CI_COMMIT_TAG}
|
|
when:
|
|
- event: [tag]
|
|
|
|
depends_on:
|
|
- test
|