Workflow file for this run
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
on: [push] | |
jobs: | |
create_draft_release: | |
runs-on: ubuntu-latest | |
outputs: | |
id: ${{ steps.create_draft_release.outputs.id }} | |
steps: | |
- name: Create draft release on tags | |
id: create_draft_release | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
uses: actions/create-release@v1.1.4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: true | |
prerelease: false | |
latex-job: | |
needs: create_draft_release | |
runs-on: ubuntu-latest | |
name: Compile And Upload PDF | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set git user | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email github-actions-bot@users.noreply.github.com | |
- name: Define env | |
run: | | |
echo "GITHUB_TAG=$(git describe --always --tags)" >> $GITHUB_ENV | |
echo "BUILD_DATE=$(date +'%Y_%m_%d')" >> $GITHUB_ENV | |
- name: Prepare env | |
run: | | |
sudo apt update | |
sudo apt install fonts-opendyslexic fonts-texgyre | |
sudo rm -rf /usr/share/fonts/woff/opendyslexic | |
- name: Setup TexLive | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
# Obtained with | |
# rg '%?\\usepackage\[?.*\]?\{(.*)\}.*$' --trim -r '$1' --no-line-number | |
# Without lmodern, amssymb, tikz which seem to hgave problems | |
packages: | | |
scheme-medium | |
iftex | |
fontenc | |
inputenc | |
fontspec | |
makeidx | |
babel | |
hyperref | |
booktabs | |
xcolor | |
graphicx | |
amsmath | |
amsthm | |
physics | |
fourier | |
amsbsy | |
units | |
pgfplots | |
tikz-3dplot | |
tcolorbox | |
todonotes | |
showlabels | |
doclicense | |
biblatex | |
autonum | |
natbib | |
doi | |
appendix | |
subfiles | |
scrhack | |
- name: Check and TG are installed | |
run: ./check.sh | |
# - name: compile.sh | |
# uses: dante-ev/latex-action@latest | |
# with: | |
# extra_system_packages: fonts-opendyslexic fonts-texgyre texlive-bibtex-extra biber texlive-luatex texlive-latex-recommended | |
# entrypoint: ./check.sh | |
# - name: compile.sh | |
# uses: dante-ev/latex-action@latest | |
# with: | |
# extra_system_packages: fonts-opendyslexic fonts-texgyre texlive-bibtex-extra biber texlive-luatex texlive-latex-recommended | |
# entrypoint: ./compile.sh | |
- name: full compile | |
run: ./compile.sh | |
- name: rename tg | |
run: | | |
mkdir assets | |
mv hm.pdf assets/hm-tg.pdf | |
# - name: Upload PDF | |
# if: ${{ success() }} | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# path: assets/hm-tg.pdf | |
# name: hm-tg-${{ env.BUILD_DATE }}-${{ env.GITHUB_TAG }}.pdf | |
# if-no-files-found: error | |
- name: Prepare for deployment | |
run: | | |
mkdir public | |
mv hm-images/ images/ chapter*.html index.html *.css public/ | |
- name: Deploy release | |
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
publish_branch: master | |
publish_dir: ./public | |
- name: Use OpenDyslxic | |
run: git apply ci.patch | |
- name: compile again | |
run: | | |
lualatex -interaction=nonstopmode -shell-escape hm.tex | |
biber hm | |
makeindex hm | |
lualatex -interaction=nonstopmode -shell-escape hm.tex | |
lualatex -interaction=nonstopmode -shell-escape hm.tex | |
# - name: compile the notes again | |
# uses: dante-ev/latex-action@latest | |
# with: | |
# root_file: hm.tex | |
# compiler: lualatex | |
# args: -interaction=nonstopmode -shell-escape | |
# extra_system_packages: fonts-opendyslexic fonts-texgyre texlive-bibtex-extra biber texlive-luatex texlive-latex-recommended | |
- name: rename od | |
run: mv hm.pdf assets/hm-od.pdf | |
- name: Upload od assets | |
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }} | |
id: upload-release-assets | |
uses: dwenegar/upload-release-assets@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
release_id: ${{ needs.create_draft_release.outputs.id }} | |
assets_path: assets/ |