jupyterlab_sandbox_theme/.woodpecker.yml

12 lines
439 B
YAML
Raw Normal View History

2023-01-23 10:37:59 +00:00
pipeline:
build-package:
2023-01-23 11:06:30 +00:00
image: nikolaik/python-nodejs:python3.7-nodejs19
2023-01-23 10:37:59 +00:00
commands:
2023-01-23 10:58:11 +00:00
- apt update && apt install build-essential -y
2023-01-23 11:18:08 +00:00
- python -m pip install -U jupyterlab~=3.5.2 build twine
2023-01-23 10:37:59 +00:00
- python -m build -s
2023-01-23 11:53:43 +00:00
- sleep 6000
2023-01-23 11:56:29 +00:00
- python -m twine upload dist/* --repository-url=$TWINE_REPOSITORY_URL
2023-01-23 11:41:21 +00:00
secrets: [ TWINE_USERNAME, TWINE_PASSWORD, TWINE_REPOSITORY, TWINE_REPOSITORY_URL]