Skip to content

add caching for raw CSV data in WorkLogDisplayView; implement watch f… #8

add caching for raw CSV data in WorkLogDisplayView; implement watch f…

add caching for raw CSV data in WorkLogDisplayView; implement watch f… #8

name: Build website and deploy to GitHub Pages
on:
push:
branches: [ "master" ]
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2
- name: Install dependencies
run: bun install
- name: Build
run: bun run build --base=/work_log_view/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4