Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Compile LaTeX document
uses: dante-ev/latex-action@latest
with:
root_file: WenegratGroupExpectations.tex

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v0.1-${{ github.run_number }}
release_name: Automated build v0.1-${{ github.run_number }}
draft: false
prerelease: false

- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./WenegratGroupExpectations.pdf
asset_name: WenegratGroupExpectations.pdf
asset_content_type: pdf
Binary file removed WenegratGroupExpectations.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion WenegratGroupExpectations.tex
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
\fancypagestyle{alim}{\fancyfoot[L]{\textit{Parts of this document are adapted (or directly borrowed) from similar documents written by Dan Chavas (Purdue), Morgan O'Neill (Stanford), , Alison Nugent (UH Manoa), and Leif Thomas (Stanford).}}}

\begin{document}
\rhead{Wenegrat group expectations document, updated 2022-04-01}
\rhead{Wenegrat group expectations document, updated \today}
%\maketitle

%\thispagestyle{alim}
Expand Down