hisscl/.woodpecker.yml
Elara6331 c6bcb05ac6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Run tests in CI pipeline
2024-11-13 23:27:14 -08:00

45 lines
802 B
YAML

labels:
platform: linux/amd64
clone:
git:
image: woodpeckerci/plugin-git
settings:
tags: true
steps:
test:
image: python
commands:
- python -m unittest
when:
event: [tag, pull_request]
build:
image: python
commands:
- python -m pip install build
- python -m build
when:
event: tag
publish:
image: gitea.elara.ws/music-kraken/plugin-twine
settings:
username: __token__
password:
from_secret: pypi_token
when:
event: tag
release:
image: woodpeckerci/plugin-release
settings:
title: "Version ${CI_COMMIT_TAG}"
files:
- 'dist/hisscl-*.whl'
- 'dist/hisscl-*.tar.gz'
api_key:
from_secret: gitea_token
when:
event: tag