Skip to content

add next house hoh event #396

add next house hoh event

add next house hoh event #396

Workflow file for this run

name: Build and Deploy
# Controls when the workflow will run
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
cache: "poetry"
- name: Setup packages
# Skips installing dev dependencies
run: poetry install --only main
- name: Process Data
run: poetry run python ./process.py
- name: Upload result
uses: actions/upload-pages-artifact@v3
with:
path: output
deploy:
if: github.ref_name == 'main'
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4