Merge pull request #432 from WoltLab/user-activity-event-migration #586
This file contains 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
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/}" |