Skip to content

Update deploy.yml for deploy #18

Update deploy.yml for deploy

Update deploy.yml for deploy #18

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies with Bun
run: bun install
- name: Build the site with Bun
run: bun run build # Produces the `dist` folder
- name: List build output
run: ls -R dist # Verify if `dist` was created
- name: Upload build output as artifact
uses: actions/upload-artifact@v3
with:
name: github-pages # Artifact name expected by deploy-pages
path: dist # Upload entire dist directory
lighthouse:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download build output artifact
uses: actions/download-artifact@v3
with:
name: github-pages
path: dist # Download into the 'dist' directory
- name: List files in current directory
run: ls -la
- name: List files in dist directory
run: ls -la dist
- name: Show lighthouserc.json
run: cat lighthouserc.json || echo "lighthouserc.json not found"
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install Lighthouse CI globally
run: bun install -g @lhci/[email protected]
- name: Run Lighthouse CI
run: lhci autorun --collect.staticDistDir=dist --assert.assertions.errors-in-console=warn
deploy:
needs: [build, lighthouse]
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4