10 lines
171 B
YAML
10 lines
171 B
YAML
pipeline:
|
|
build:
|
|
image: python:latest
|
|
when:
|
|
event: tag
|
|
commands:
|
|
- python --version
|
|
- pip install -U build --quiet
|
|
- python -m build
|