11 lines
185 B
YAML
11 lines
185 B
YAML
pipeline:
|
|
build:
|
|
image: python:latest
|
|
when:
|
|
event: tag
|
|
commands:
|
|
- python --version
|
|
- pip install -U build --quiet
|
|
- python -m build
|
|
- ls -l
|