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: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]
|