9 lines
408 B
YAML
9 lines
408 B
YAML
steps:
|
|
build-package:
|
|
image: nikolaik/python-nodejs:python3.10-nodejs21-alpine
|
|
commands:
|
|
- apt update && apt install build-essential -y
|
|
- python -m pip install -U jupyterlab~=4.0.12 build twine
|
|
- python -m build -s
|
|
- python -m twine upload dist/* --repository-url=$TWINE_REPOSITORY_URL
|
|
secrets: [ TWINE_USERNAME, TWINE_PASSWORD, TWINE_REPOSITORY, TWINE_REPOSITORY_URL] |