First Start of the recursion chapter, will continue soonish #103
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: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: xu-cheng/texlive-action/full@v1 | |
with: | |
run: | | |
apk add make | |
apk add g++ | |
apk add zip | |
make script zip | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: PDF | |
path: vorkurs.pdf | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
vorkurs.pdf | |
vorkurs.zip | |