-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub action to publish PDF as release artifact (#2)
- Loading branch information
Showing
6 changed files
with
47 additions
and
4 deletions.
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,28 @@ | ||
name: xelatex | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
# https://stackoverflow.com/a/58521709 | ||
# https://github.com/vipintm/docker-xelatex | ||
container: vipintm/xelatex | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: xelatex | ||
run: make | ||
|
||
# https://github.com/marketplace/actions/upload-files-to-a-github-release | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v1-release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: algebraic-groups.pdf | ||
asset_name: algebraic-groups.pdf | ||
tag: ${{ github.ref }} | ||
overwrite: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
*.brf | ||
*.log | ||
*.out | ||
*.run.xml | ||
*.synctex.gz | ||
*.synctex.gz(busy) | ||
|
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
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,3 @@ | ||
all: | ||
xelatex algebraic-groups.tex | ||
xelatex algebraic-groups.tex |
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 |
---|---|---|
@@ -1,4 +1,15 @@ | ||
Linear algebraic groups and their Lie algebras | ||
==== | ||
# Linear algebraic groups and their Lie algebras | ||
|
||
Notes from the course MATH 6490, taught at Cornell University by David Zywina. | ||
![xelatex](https://github.com/dkmiller/algebraic-groups/workflows/xelatex/badge.svg) | ||
|
||
Notes from the course MATH 6490, taught at Cornell University by | ||
[David Zywina](mailto:[email protected]). | ||
|
||
To create the PDF locally on windows, run the following command in PowerShell. | ||
Assumes you have | ||
[Docker for Windows](https://docs.docker.com/docker-for-windows/) | ||
installed. | ||
|
||
```powershell | ||
docker run --volume ${PWD}:/src --workdir /src vipintm/xelatex make | ||
``` |
Binary file not shown.