Separate pipelines for PRs and releases
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Brain 2022-11-22 13:57:12 +01:00
parent 431607c6e5
commit 72d0012f33
Signed by: Brain
GPG Key ID: 9CF47083EE57670D
1 changed files with 26 additions and 4 deletions

View File

@ -2,14 +2,38 @@
kind: pipeline
name: default
trigger:
branch:
- main
event:
- push
- pull_request
steps:
- name: build
image: sphinxdoc/sphinx-latexpdf:5.0.2
commands:
- apt-get update
- apt-get -y install texlive-lang-german rsync
- apt-get -y install texlive-lang-german
- pip install -r requirements.txt
- make -j4 latexpdf
- make latexpdf
---
kind: pipeline
name: publish
trigger:
event:
- tag
steps:
- name: build
image: sphinxdoc/sphinx-latexpdf:5.0.2
commands:
- apt-get update
- apt-get -y install texlive-lang-german
- pip install -r requirements.txt
- make latexpdf
- name: gitea_release
image: plugins/gitea-release
settings:
@ -17,5 +41,3 @@ steps:
from_secret: gitea_token
base_url: https://git.wtf-eg.de
files: build/latex/rtfm-dashandbuchderfreefederatedfleetfffleetinitiative.pdf
when:
event: tag