Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Release with bun shell #4

Release with bun shell

Release with bun shell #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_dispatch: {}
push:
branches:
- main
paths:
- "package.json"
- "yarn.lock"
- "docs/**"
- ".github/workflows/vitepress.yml"
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install --frozen-lockfile
- name: Build
run: bun run build
- uses: actions/configure-pages@v2
- uses: actions/upload-pages-artifact@v1
with:
path: docs/.vitepress/dist
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1