Skip to content

Experiment with the tag/version format #25

Experiment with the tag/version format

Experiment with the tag/version format #25

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Thomas Breitner
#
# SPDX-License-Identifier: MIT
name: Publish github pages
on:
push:
branches:
- main
permissions:
contents: write
pages: write
jobs:
ghpages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Deploy to github pages
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install .
mkdocs gh-deploy --force --clean --verbose