Skip to content

Update artifact version from v2 to v4 #7

Update artifact version from v2 to v4

Update artifact version from v2 to v4 #7

Workflow file for this run

name: Deploy documentation to GitHub Pages
on:
push:
tags:
- 'v*.*.*'
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install
- name: Build documentation
run: |
make docs
- name: Deploy docs to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html