#9 daytime variation for access and travel time to opportunities #113
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: Deploy Dashboard to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main # Trigger on pushes to the main branch | |
| workflow_dispatch: # Allow manual triggers | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v4 | |
| - name: Setup Node ⚙️ | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| cache-dependency-path: dashboard/package-lock.json | |
| - name: Install and Build 🏗️ | |
| run: | | |
| cd dashboard | |
| npm ci | |
| npm run build | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| folder: dashboard/dist # The folder the action should deploy. | |
| branch: gh-pages # The branch the action should deploy to. |