Skip to content

github: bump stable version to v0.15.0 #152

github: bump stable version to v0.15.0

github: bump stable version to v0.15.0 #152

Workflow file for this run

name: Build and Deploy Documentation
on:
push:
branches:
- 'master'
jobs:
build-docs:
name: Build Documentation
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ref: master
name: dev
- ref: v0.15.0
name: stable
steps:
- uses: actions/checkout@v3
with:
ref: ${{ matrix.ref }}
- name: Install dependencies (apt)
run: sudo apt-get install -y python3-clang python3-pip
- name: Build docs
run: |
. venv
sphinx-build doc _build
- uses: actions/upload-artifact@v3
with:
name: ${{ matrix.name }}
path: _build
if-no-files-found: error
deploy-docs:
name: Deploy Documentation
runs-on: ubuntu-latest
needs: build-docs
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- uses: actions/download-artifact@v3
with:
path: .
- name: Add redirect to stable documentation
run: echo '<meta http-equiv="refresh" content="0; url=stable" />' > index.html
- run: find
- uses: actions/configure-pages@v3
- uses: actions/upload-pages-artifact@v1
with:
path: .
- id: deployment
uses: actions/deploy-pages@v1