Document migration of forms to form builder forms #672
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
| name: Deploy | |
| on: | |
| push: | |
| branches: | |
| - '5.4' | |
| - '5.5' | |
| - '5.6' | |
| - '6.0' | |
| - '6.1' | |
| - '6.2' | |
| 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@v5 | |
| 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/}" |