Skip to content

Merge pull request #401 from WoltLab/dependabot/pip/markdown-3.5.1 #600

Merge pull request #401 from WoltLab/dependabot/pip/markdown-3.5.1

Merge pull request #401 from WoltLab/dependabot/pip/markdown-3.5.1 #600

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/}"