Skip to content

Add search bar to documentation #74 #10

Add search bar to documentation #74

Add search bar to documentation #74 #10

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Ludwig Hülk <https://github.com/Ludee> © Reiner Lemoine Institut
# SPDX-License-Identifier: MIT
name: documentation (develop branch)
on:
push:
branches:
- develop
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- name: Setup git
run: |
git config --global user.name Documentation
git config --global user.email [email protected]
- run: pip install --upgrade -r requirements.txt
- run: |
git fetch origin gh-pages --verbose
mike deploy --push --update-aliases develop