Skip to content

Update data and deploy #57

Update data and deploy

Update data and deploy #57

Workflow file for this run

name: Update data and deploy
on:
schedule:
- cron: '0 2 * * *' # 02:00 UTC nightly
workflow_dispatch:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: pip
- run: pip install -r requirements.txt
- name: Fetch NaPTAN (GB + IE)
run: python scripts/fetch-naptan.py
- uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4