-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (83 loc) · 3 KB
/
deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
name: Deploy
on:
push:
branches:
- main
- renovate/**
pull_request:
concurrency:
cancel-in-progress: true
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
jobs:
chktex:
runs-on: ubuntu-latest
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/latex/chktex@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
vale:
runs-on: ubuntu-latest
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/latex/vale@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
vale-flags: --glob='!{config/,figures/*/example_,thesis}*'
compile-latex:
runs-on: ubuntu-latest
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/latex/compile@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
- name: Upload artefacts
# yamllint disable-line rule:line-length
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4
with:
name: artefacts
path: |-
*.bib
*.bcf
*.pdf
if-no-files-found: error
check-citations-referenced:
runs-on: ubuntu-latest
needs: compile-latex
steps:
- name: Download artefacts
# yamllint disable-line rule:line-length
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: artefacts
- name: Fix regex for checkcites
# yamllint disable-line rule:line-length
uses: xu-cheng/texlive-action@3586544d56723b23ab69aec1e9d73e7220d9c313 # v2
id: references
with:
scheme: full
run: >-
sed -i 's#\sglob="false"##' thesis.bcf; echo uncited=$(checkcites -b
biber thesis -u | grep -c "=>") >> $GITHUB_OUTPUT
- name: Check all references cited
if: ${{ steps.references.outputs.uncited > 0 }}
# yamllint disable-line rule:line-length
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
with:
script: core.setFailed('Not all references cited')
upload-to-dropbox:
if: github.ref == 'refs/heads/main'
needs: compile-latex
runs-on: ubuntu-latest
steps:
- name: Download artefacts
# yamllint disable-line rule:line-length
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: artefacts
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/dropbox@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
with:
configfile-version: ${{ secrets.CONFIGFILE_VERSION }}
files-to-upload: $(find . -maxdepth 1 -name '*.pdf' -print)
oauth-app-key: ${{ secrets.OAUTH_APP_KEY }}
oauth-app-secret: ${{ secrets.OAUTH_APP_SECRET }}
oauth-refresh-token: ${{ secrets.OAUTH_REFRESH_TOKEN }}