Skip to content

Commit c224380

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 c224380

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed
+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

lkmpg.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
\maketitle
4242
\tableofcontents
4343

44-
\section{Introduction}
44+
\section{Introductiona}
4545
\label{sec:introduction}
4646
The Linux Kernel Module Programming Guide is a free book; you may reproduce and/or modify it under the terms of the \href{https://opensource.org/licenses/OSL-3.0}{Open Software License}, version 3.0.
4747

0 commit comments

Comments
 (0)