Skip to content

feat: beta42を反映 #126

feat: beta42を反映

feat: beta42を反映 #126

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version-file: ".bun-version"
- name: Build
run: |
bun install
bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./.vitepress/dist
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4