-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (39 loc) · 1.09 KB
/
push.yml
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
name: Build and publish latex
# Controls when the workflow will run
on:
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Show Working directory
run: ls
- name: Setup dsek latex
uses: actions/checkout@v2
with:
repository: Dsek-LTH/dsek-latex
path: TEX
- name: Show Working directory
run: ls TEX
- uses: xu-cheng/latex-action@v2
with:
root_file: "*.tex"
glob_root_file: true
env:
TEXINPUTS: ".:./TEX//:"
- uses: actions/upload-artifact@v2
with:
name: PDF
path: "*.pdf"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
files: |
*.pdf