-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 886 Bytes
/
makefile.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
name: Build Latex Document
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_print:
runs-on: ubuntu-latest
steps:
- name: Setup Git repository
uses: actions/checkout@v4
- name: Setup Perl
uses: shogo82148/actions-setup-perl@v1
with:
install-modules: "LWP::UserAgent"
- run: perl get-referenced-rfcs > all-rfcs.bib
- name: Compile Latex Document
uses: xu-cheng/latex-action@v3
with:
root_file: BGP_for_networks_who_peer.tex
args: "-bibtex"
- name: Upload PDF file
uses: actions/upload-artifact@v4
with:
name: BGP_for_networks_who_peer
path: BGP_for_networks_who_peer.pdf
- name: Release
uses: softprops/action-gh-release@v1
with:
files: BGP_for_networks_who_peer.pdf