Skip to content

add chalabi's work with the commit history #1

add chalabi's work with the commit history

add chalabi's work with the commit history #1

Workflow file for this run

name: Test Deploy to GitHub Pages
on:
push:
paths:
- web-ui/**
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest # or specify a version
- name: Install Dependencies
run: bun install
- name: Build Project
run: bun run build
- name: Export Project
run: bun export
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out