renamebycsv/.woodpecker.yml
Harrison 1eebfd9717
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Change image to debian
2023-04-06 09:51:29 -05:00

21 lines
557 B
YAML

# .woodpecker.yml
pipeline:
install:
image: debian
commands:
- 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/*