master-thesis/.drone.yml

43 lines
881 B
YAML
Raw Permalink Normal View History

2022-02-03 13:48:53 +01:00
---
kind: pipeline
type: docker
name: default
steps:
- name: buildlatex
image: nareshkumarrao/texliveonfly
commands:
2022-02-16 00:37:05 +01:00
- tlmgr update --self --all
2022-02-03 13:48:53 +01:00
- texliveonfly Main.tex
- biber main
- texliveonfly Main.tex
- biber main
- texliveonfly Main.tex
- name: gitea_release
image: plugins/gitea-release
settings:
base_url: https://git.nareshkumarrao.com
api_key:
from_secret: gitea_token
files: Main.pdf
when:
event: tag
2022-02-19 01:08:53 +01:00
- name: pushftp
image: cschlosser/drone-ftps
2022-02-19 01:15:50 +01:00
environment:
PLUGIN_HOSTNAME: nareshkumarrao.com:21
FTP_USERNAME:
from_secret: ftp_username
FTP_PASSWORD:
from_secret: ftp_password
PLUGIN_SECURE: false
PLUGIN_DEST_DIR: master_thesis
2022-02-19 01:18:05 +01:00
PLUGIN_INCLUDE: ^Main.pdf$
2022-02-19 01:15:50 +01:00
when:
event: tag
2022-02-03 13:48:53 +01:00
trigger:
event:
- tag