feat: add thymus config and update cli version (#132) #112
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # 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 |