Skip to content

Merge branch '6.0' into 6.1 #592

Merge branch '6.0' into 6.1

Merge branch '6.0' into 6.1 #592

Workflow file for this run

name: Deploy
on:
push:
branches:
- '5.4'
- '5.5'
- '5.6'
- '6.0'
- '6.1'
permissions:
contents: write
jobs:
deploy:
concurrency:
group: target
cancel-in-progress: true
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip3 install -r requirements.txt
- name: Prepare git
run: |
git config user.name "WoltLab GmbH"
git config user.email "[email protected]"
- name: Deploy documentation
run: mike deploy --branch "target" --push "${GITHUB_REF#refs/heads/}"