Skip to content

Commit f1b17e6

Browse files
committed
Dockerized PDF deployment in Github Actions
Add a new Github Action to build and release the pdf file after every push to master. Using texlive/texlive docker image for reproducibility and also forward compability with tools like make4ht for future builds. Progress #27 - Reproducible TeX build environment using Docker
1 parent 6026699 commit f1b17e6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: build-deploy-assets
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
container: texlive/texlive
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Build
17+
run: make all
18+
- name: Release
19+
uses: softprops/action-gh-release@v1
20+
with:
21+
files: lkmpg.pdf
22+
tag_name: "latest"
23+
prerelease: true

0 commit comments

Comments
 (0)