Skip to content

fix : github action file #6

fix : github action file

fix : github action file #6

Workflow file for this run

name: publish-to-github-pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Install Bun 🔧
run: |
curl -fsSL https://bun.sh/install | bash
echo "${HOME}/.bun/bin" >> $GITHUB_PATH
- name: Setup Pages ⚙️
uses: actions/configure-pages@v4
with:
static_site_generator: next
- name: Install Dependencies with Bun 🔧
run: bun install
- name: Build with Next.js using Bun 🏗️
run: bun run build
- name: Upload artifact 📡
uses: actions/upload-pages-artifact@v3
run: pwd
with:
path: ./out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Publish to GitHub Pages 🚀
id: deployment
uses: actions/deploy-pages@v4