Skip to content

feat: fix python for gh-pages to v3.12 (#131) #111

feat: fix python for gh-pages to v3.12 (#131)

feat: fix python for gh-pages to v3.12 (#131) #111

Workflow file for this run

#
# Copyright (c) 2021-2025 - for information on the respective copyright owner
# see the NOTICE file and/or the repository https://github.com/carbynestack/carbynestack.github.io.
#
# SPDX-License-Identifier: Apache-2.0
#
name: Deploy to Github Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-20.04
steps:
- name: Checkout Source Code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install Material for MkDocs
run: pip install \
git+https://${{ secrets.MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git@8.2.11-insiders-4.13.1 \
mkdocs-minify-plugin==0.5.0 mkdocs-swagger-ui-tag==0.6.8
- name: Deploy site
run: mkdocs gh-deploy --force