Skip to content

CI: Bump deploy-docs.yml Python version to 3.11 #6

CI: Bump deploy-docs.yml Python version to 3.11

CI: Bump deploy-docs.yml Python version to 3.11 #6

Workflow file for this run

name: Deploy docs
on:
push:
tags: ['[0-9]+.[0-9]+.*']
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: ./.github/actions/setup
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install -U pip setuptools wheel
pip install -e .
- name: Build docs
run: time doc/build.sh
- name: Deploy docs
env:
GH_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: .github/deploy-gh-pages.sh