-
Notifications
You must be signed in to change notification settings - Fork 518
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
1 parent
6026699
commit c224380
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: build-deploy-assets | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: texlive/texlive | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: make all | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: lkmpg.pdf | ||
tag_name: "latest" | ||
prerelease: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters