Skip to content

Rebuild

Rebuild #580

Workflow file for this run

name: Rebuild
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: '1.4'
- name: Poetry install
run: poetry install
- name: Build html
run: poetry run build
- name: Publish
uses: EndBug/add-and-commit@v9
with:
add: 'docs'
message: 'auto daily html build'