wait-for/.woodpecker/build-package.yml

37 lines
737 B
YAML
Raw Normal View History

2023-08-22 09:07:13 +02:00
---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
checksum:
image: quay.io/thegeeklab/alpine-tools
2023-08-22 09:07:13 +02:00
commands:
- sha256sum wait-for > sha256sum.txt
changelog:
image: quay.io/thegeeklab/git-sv
2023-08-22 09:07:13 +02:00
commands:
- git sv current-version
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
- cat CHANGELOG.md
2023-08-22 09:07:13 +02:00
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]
2023-08-22 09:07:13 +02:00
depends_on:
- test