Skip to content

fix(ci): build part to run build not build #2

fix(ci): build part to run build not build

fix(ci): build part to run build not build #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies with bun
run: bun install
- name: Build Astro site with bun
run: bun run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist