17 lines
418 B
YAML
17 lines
418 B
YAML
name: Build Webpage
|
|
run-name: $${{gitea.actor}} - build page
|
|
on: [push]
|
|
|
|
jobs:
|
|
Render:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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
|