Load series from individual files #54
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: Build and deploy website | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Allow to run this workflow manually from the Actions tab. | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| # Grant `GITHUB_TOKEN` the necessary permissions. | |
| permissions: | |
| contents: write | |
| deployments: write | |
| pages: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version-file: ".python-version" | |
| - name: Install project | |
| run: uv sync | |
| - name: Download and extract database | |
| run: wget -q -O - https://github.com/lanpartydb/data/raw/dist/data.tar.xz | tar xJf - | |
| - name: Generate static website | |
| run: uv run flask freeze | |
| - name: Configure Git user | |
| run: | | |
| git config user.name "workflow" | |
| git config user.email "workflow@invalid" | |
| - name: Create new branch | |
| run: git switch --orphan gh-pages | |
| - name: Move static website to repository root | |
| run: mv -v build/* . | |
| - name: Create CNAME file | |
| run: echo "lanpartydb.orgatalk.de" > CNAME | |
| - name: Add, commit, and push files | |
| run: | | |
| git add index.html parties/ series/ static/ CNAME | |
| git commit -m 'Add static website' | |
| git remote set-url origin https://${{ github.repository_owner }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git | |
| git push --force origin gh-pages |