Workflow config file is invalid. Please check your config file: yaml: line 16: mapping values are not allowed in this context
Jochen Mehlich 81fb51dfe4 auto added
Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
2023-11-18 12:04:14 +01:00

20 lines
444 B
YAML

name: Build Webpage
run-name: build page
on: [push]
jobs:
Render:
runs-on: python
steps:
- name: install dependencies
run: cd latex-wochenende/onpoint
run: pip3 install -r requirements.txt
- name: Build presentation
run: bash deploy.sh
- name: Save to cache
uses: actions/cache/save@v3
id: cache
with:
path: ./
key: 'latex-presentation'