added action pipeline

Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
This commit is contained in:
Jochen Mehlich 2023-11-18 13:05:36 +01:00
parent 81fb51dfe4
commit a54f06f400

View File

@ -1,19 +1,17 @@
name: Build Webpage name: Build Webpage
run-name: build page run-name: $${{gitea.actor}} - build page
on: [push] on: [push]
jobs: jobs:
Render: Render:
runs-on: python runs-on: ubuntu-latest
steps: steps:
- name: install dependencies - uses: actions/checkout@v3
run: cd latex-wochenende/onpoint with:
run: pip3 install -r requirements.txt submodules: true
- name: Build presentation token: ${{ secrets.TOKEN}}
run: bash deploy.sh - run: apt update && apt install -yqq python3 zip pandoc python3-pip
- name: Save to cache - run: cd onpoint && pip3 install -r requirements.txt
uses: actions/cache/save@v3 - run: bash deploy.sh
id: cache - run: ls
with:
path: ./
key: 'latex-presentation'