35 lines
747 B
YAML
35 lines
747 B
YAML
---
|
|
kind: pipeline
|
|
name: pdf-auralia-build-and-publish
|
|
type: docker
|
|
|
|
# Spécifie l'image Docker à utiliser
|
|
image: python:3.11
|
|
|
|
# Étapes de la pipeline
|
|
steps:
|
|
- name: build-and-publish
|
|
image: python:3.11
|
|
commands:
|
|
- echo "Tag: ${DRONE_TAG}"
|
|
- sed -i "s/VERSION_PLACEHOLDER/${DRONE_TAG}/g" pyproject.toml
|
|
- curl -sSL https://install.python-poetry.org | python3 -
|
|
- export PATH="/root/.local/bin:$PATH"
|
|
- poetry --version
|
|
- poetry build
|
|
- poetry publish --username __token__ --password $PYPI_TOKEN
|
|
environment:
|
|
PYPI_TOKEN:
|
|
from_secret: pypi_token
|
|
|
|
when:
|
|
event:
|
|
include:
|
|
- tag
|
|
|
|
# Déclencheur de la pipeline
|
|
trigger:
|
|
event:
|
|
include:
|
|
- tag
|