pretalx-musicrate/.drone.yml

53 lines
946 B
YAML
Raw Normal View History

2023-12-14 00:43:58 +01:00
---
kind: pipeline
type: docker
name: default
steps:
2023-12-14 01:37:52 +01:00
- name: create virtual env
image: python:3.11-alpine
commands:
- python -m venv .venv
2023-12-14 01:17:50 +01:00
- name: install
image: python:3.11-alpine
commands:
2023-12-14 01:26:55 +01:00
- &path
export PATH="$$DRONE_WORKSPACE/.venv/bin:$$PATH"
2023-12-14 01:41:58 +01:00
- echo $$PATH
2023-12-14 01:17:50 +01:00
- which pip
- pip install black build flake8 isort twine
2023-12-14 01:17:50 +01:00
2023-12-14 00:56:09 +01:00
- name: check style
2023-12-14 01:03:35 +01:00
image: python:3.11-alpine
2023-12-14 00:56:09 +01:00
commands:
2023-12-14 01:26:55 +01:00
- *path
2023-12-14 00:56:09 +01:00
- black --check .
- isort -c .
- flake8 .
2023-12-14 00:43:58 +01:00
- name: build
2023-12-14 01:03:35 +01:00
image: python:3.11-alpine
2023-12-14 00:43:58 +01:00
commands:
2023-12-14 01:26:55 +01:00
- *path
- python -m build
2023-12-14 00:43:58 +01:00
- name: publish
2023-12-14 01:03:35 +01:00
image: python:3.11-alpine
2023-12-14 00:43:58 +01:00
commands:
2023-12-14 01:26:55 +01:00
- *path
- twine upload --repository-url https://git.luj0ga.de/api/packages/kontakt/pypi -u ''
2023-12-14 00:43:58 +01:00
environment:
TwINE_PASSWORD:
2023-12-14 00:43:58 +01:00
from_secret: repo_token
when:
event:
- tag
2023-12-14 00:56:09 +01:00
trigger:
event:
- pr
- push
- tag