11 lines
361 B
YAML
11 lines
361 B
YAML
|
steps:
|
||
|
pypi:
|
||
|
image: ubuntu:23.04
|
||
|
commands:
|
||
|
- apt update
|
||
|
- apt install -y python3 python3-pip
|
||
|
- pip3 install -r requirements-dev.txt --break-system-packages
|
||
|
- python -m build
|
||
|
- twine upload -u ada -p $REGISTRY_TOKEN --repository-url https://gitea.example.com/api/packages/gnouseu/ dist/
|
||
|
secrets:
|
||
|
- registry_token
|