diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 86f0295..be76576 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,19 +1,17 @@ name: Build Webpage -run-name: build page +run-name: $${{gitea.actor}} - build page on: [push] -jobs: +jobs: Render: - runs-on: python + runs-on: ubuntu-latest 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' + - uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.TOKEN}} + - run: apt update && apt install -yqq python3 zip pandoc python3-pip + - run: cd onpoint && pip3 install -r requirements.txt + - run: bash deploy.sh + - run: ls +