0
0
mirror of https://github.com/thegeeklab/retry.git synced 2024-11-21 23:20:40 +00:00
retry/.woodpecker/build-package.yml

37 lines
752 B
YAML
Raw Normal View History

---
when:
2023-07-26 18:43:03 +00:00
- event: [pull_request, tag]
- event: [push, manual]
2023-07-25 21:43:19 +00:00
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
- name: checksum
image: quay.io/thegeeklab/alpine-tools
commands:
- sha256sum retry > sha256sum.txt
- 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-github
image: docker.io/plugins/github-release
settings:
api_key:
from_secret: github_token
files:
- retry
- sha256sum.txt
note: CHANGELOG.md
overwrite: true
title: ${CI_COMMIT_TAG}
when:
- event: [tag]
depends_on:
- test