Skip to content

merge to 0.3.0

merge to 0.3.0 #73

Workflow file for this run

name: πŸš€ Deploy Docs
on:
push:
branches:
- master
# tags:
# - v*
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: πŸ›’ Checkout
uses: actions/checkout@master
- name: 🐍 Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: 🧰 Install dependencies
run: make install IGNORE_VENV=1
- name: πŸ“š Build Docs
run: |
make docs
touch docs/build/html/.nojekyll
- name: πŸš€ Deploy Docs
uses: peaceiris/[email protected]
env:
PERSONAL_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: docs/build/html
#- name: Build Package
#run: |
#python3 setup.py sdist
#- name: Deploy Package
#uses: pypa/gh-action-pypi-publish@master
#with:
#user: __token__
#password: ${{ secrets.PYPI_TOKEN }}