-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (44 loc) · 1.49 KB
/
tagpr.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
49
50
name: tagpr
on:
push:
branches: ["main"]
jobs:
tagpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: tagpr
uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Remove waterkmark
if: ${{ steps.tagpr.outputs.tag != '' }}
# Set the variable controlling the watermark addition to `false`
run: |
sed -i 's/\\setboolean{isDraft}{true}/\\setboolean{isDraft}{false}/' src/dacs-sw/control-station-installation/main.tex
- name: Compile LaTeX document
if: ${{ steps.tagpr.outputs.tag != '' }}
uses: xu-cheng/latex-action@v3
with:
working_directory: src/dacs-sw/control-station-installation/
root_file: main.tex
work_in_root_file_dir: true
- name: Compile LaTeX template document
if: ${{ steps.tagpr.outputs.tag != '' }}
uses: xu-cheng/latex-action@v3
with:
working_directory: src/dacs-sw/template/
root_file: main.tex
work_in_root_file_dir: true
- name: Rename files and move to single release folder
if: ${{ steps.tagpr.outputs.tag != '' }}
run: |
mkdir release
mv src/dacs-sw/control-station-installation/main.pdf release/sw-control-station-installation.pdf
- name: Make release with PDFs
if: ${{ steps.tagpr.outputs.tag != '' }}
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.tagpr.outputs.tag }}
files: |
release/*