Skip to content

feat(dashboard): wire date-range UI + URL sync #3

feat(dashboard): wire date-range UI + URL sync

feat(dashboard): wire date-range UI + URL sync #3

Workflow file for this run

name: Deploy dashboard to Pages
on:
push:
branches: [main]
paths:
- "dashboard/**"
- ".github/workflows/pages.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: dashboard
- id: deployment
uses: actions/deploy-pages@v4