renamebycsv/.woodpecker.yml

21 lines
557 B
YAML
Raw Normal View History

# .woodpecker.yml
pipeline:
install:
2023-04-06 14:51:29 +00:00
image: debian
commands:
2023-04-06 14:51:29 +00:00
- apt-get update
- apt-get install python3
- apt-get install python3-pip
- pip install build
- pip install pytest
- pip install setuptools
- pip install twine
build:
image: python
commands:
- python -m build
publish:
image: python
commands:
- pip -m twine upload --repository-url https://git.reslate.systems -u ${CI_NETRC_USERNAME} -p ${CI_NETRC_PASSWORD} --non-interactive --disable-progress-bar --verbose dist/*