Skip to content

Publish v2.0.1

Publish v2.0.1 #32

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: Generate API Docs 🔧
run: |
git clone --depth 1 https://github.com/frappe/frappe /opt/frappe
python3 -m venv env
. ./env/bin/activate
pip3 -q install wheel
pip3 -q install pdoc
pip3 -q install -e /opt/frappe
pip3 -q install -e .
pdoc -o build castlecraft
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build