container-library/.woodpecker/build-package.yml
Robert Kaussow e8b99410ca
All checks were successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
ci: replace drone gitea-release plugin by woodpecker plugin
2024-01-06 21:45:40 +01:00

43 lines
914 B
YAML

---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
steps:
package:
image: quay.io/thegeeklab/alpine-tools
commands:
- mkdir dist/
- tar -C ./overlay -zcvf dist/container-library.tar.gz .
checksum:
image: quay.io/thegeeklab/alpine-tools
commands:
- cd dist/ && sha256sum * > ../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-gitea:
image: quay.io/thegeeklab/wp-gitea-release
settings:
api_key:
from_secret: gitea_token
base_url: https://gitea.rknet.org
note: CHANGELOG.md
files:
- dist/*
- sha256sum.txt
title: ${CI_COMMIT_TAG}
when:
- event: [tag]
depends_on:
- test