Skip to content

Bunch of style changes #56

Bunch of style changes

Bunch of style changes #56

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: "main"
jobs:
build_site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: build
env:
BASE_PATH: ""
run: |
bun run build
touch _site/.nojekyll
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v3
with:
path: "_site/"
deploy:
needs: build_site
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4