Make explanation consistent with last case of match example #54
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
name: Publish PDF Skript | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Racket | |
uses: Bogdanp/[email protected] | |
with: | |
architecture: 'x64' | |
distribution: 'full' | |
variant: 'CS' | |
version: 'stable' | |
- run: raco pkg install --deps search-auto scribble-math | |
- name: Update apt | |
run: sudo apt-get update | |
- name: Install TeXlive | |
run: sudo apt-get install texlive texlive-latex-extra texlive-fonts-extra latexmk | |
- name: Build Scribble PDF Docs | |
run: | | |
xvfb-run racket -l racket/gui -l- scribble/run ++xref-in setup/xref load-collections-xref --prefix scribble-prefix.tex --dest-name script --pdf script-pdf.scrbl | |
- name: Upload PDF | |
uses: marvinpinto/[email protected] | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
prerelease: false | |
title: "Informatik 1 PDF Skript" | |
files: | | |
script.pdf |