Skip to content

Commit 0fce98f

Browse files
authoredAug 1, 2021
Dockerized PDF deployment in GitHub Actions (#28)
Add a new GitHub Action to build and release the PDF file after every push to master. Use texlive/texlive docker image for the sake of reproducibility in preparation for future build tools like make4ht . Progress #27 - Reproducible TeX build environment using Docker
1 parent 6026699 commit 0fce98f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
 

‎.github/workflows/generate_pdf.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)