Skip to content

Zero PE-imputed transfers via set_input so they don't leak into state… #170

Zero PE-imputed transfers via set_input so they don't leak into state…

Zero PE-imputed transfers via set_input so they don't leak into state… #170

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
working-directory: ./dashboard
run: bun install --frozen-lockfile
- name: Build application
working-directory: ./dashboard
run: bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: ./dashboard/out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5