Skip to content

🔧 Fix

🔧 Fix #36

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@v4
- 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 build/.nojekyll
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v4
with:
# this should match the `pages` option in your adapter-static options
path: 'build/'
deploy:
needs: build_site

Check failure on line 36 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy to GitHub Pages

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 36, Col: 12): Job 'deploy' depends on unknown job '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