Skip to content

feat(local-prototype): add duckdb and streamlit baseline #8

feat(local-prototype): add duckdb and streamlit baseline

feat(local-prototype): add duckdb and streamlit baseline #8

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Prepare static site
run: |
mkdir -p _site
cp index.html _site/index.html
cp noaa_pr_waterlevel_comprehensive.html _site/noaa_pr_waterlevel_comprehensive.html
touch _site/.nojekyll
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: _site
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4