Skip to content

fix: wrong bun command and add workflow_dispatch to triggers #2

fix: wrong bun command and add workflow_dispatch to triggers

fix: wrong bun command and add workflow_dispatch to triggers #2

Workflow file for this run

name: Build and Deploy documentation to Netlify
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Bun
uses: oven-sh/setup-bun@v1
- name: Install modules
run: bun install
- name: Build
run: bun run build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: "./docs/.vitepress/dist"
production-branch: main
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
enable-commit-comment: true
overwrites-pull-request-comment: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 3