knoc-plugin-template/.woodpecker/build.yaml

40 lines
848 B
YAML
Raw Permalink Normal View History

2025-06-26 18:23:41 +02:00
when:
- event: manual
- event: tag
2025-06-27 13:30:36 +02:00
depends_on:
- test
2025-06-26 18:23:41 +02:00
steps:
python_sync:
image: code.philo.ydns.eu/philorg/uv
volumes:
- uv-cache:/uv-cache
environment:
UV_CACHE_DIR: /uv-cache
UV_LINK_MODE: copy
commands:
- uv sync
python_build:
image: code.philo.ydns.eu/philorg/uv
volumes:
- uv-cache:/uv-cache
environment:
UV_CACHE_DIR: /uv-cache
UV_LINK_MODE: copy
commands:
- uv build --wheel
- uv cache prune --ci
python_publish:
image: code.philo.ydns.eu/philorg/uv
environment:
2025-06-29 04:26:24 +02:00
OWNER: philorg
2025-06-26 18:23:41 +02:00
REGISTRY_URL: https://code.philo.ydns.eu
REGISTRY_TOKEN:
from_secret: registry_token
commands:
- uv publish --publish-url $REGISTRY_URL/api/packages/$OWNER/pypi --token $REGISTRY_TOKEN dist/*.whl
failure: ignore