Skip to content

Build and Deploy #16165

Build and Deploy

Build and Deploy #16165

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
schedule:
- cron: '0 * * * *'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
test:
uses: ./.github/workflows/test.yml
build:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Build
run: |
uv run python ./ps.py &
while ! nc -z localhost 5000; do sleep 0.1; done; # Wait for server to start
mkdir output
wget -q -P output -nH --mirror --adjust-extension --page-requisites --no-parent http://127.0.0.1:5000
kill %1 # Kill the python server
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: output
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4