Skip to content

Update changelog for v0.9.3 #296

Update changelog for v0.9.3

Update changelog for v0.9.3 #296

Workflow file for this run

name: docs to gh-pages
on:
push:
# branches:
# - main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
workflow_dispatch:
jobs:
build-docs:
runs-on: ubuntu-latest
name: build docs
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
cache-dependency-path: pyproject.toml
- name: Installing the library
shell: bash -l {0}
run: |
pip install -e .[ci,docs]
export KFACTORY_DISPLAY_TYPE="image"
make docs
- uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: "./docs/site/"
deploy-docs:
needs: build-docs
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4