38 lines
741 B
YAML
38 lines
741 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: buildlatex
|
|
image: nareshkumarrao/texliveonfly
|
|
commands:
|
|
- tlmgr update --self --all
|
|
- 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
|
|
- name: pushftp
|
|
image: cschlosser/drone-ftps
|
|
hostname: nareshkumarrao.com
|
|
secrets: [ ftp_username, ftp_password ]
|
|
secure: true
|
|
dest_dir: master_thesis
|
|
include:
|
|
- ^Main.pdf$
|
|
|
|
trigger:
|
|
event:
|
|
- tag
|
|
|