Skip to content

Merge branch 'develop_rc' of https://github.com/odudex/krux into deve… #50

Merge branch 'develop_rc' of https://github.com/odudex/krux into deve…

Merge branch 'develop_rc' of https://github.com/odudex/krux into deve… #50

Workflow file for this run

name: Docs
on:
push:
branches:
- main
- develop_rc
jobs:
build-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install poetry
- name: Install docs dependencies
run: poetry install --extras docs
- name: Build docs
run: poetry run mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public