Skip to content

fix(console): set options before changing buf #14

fix(console): set options before changing buf

fix(console): set options before changing buf #14

Workflow file for this run

---
on:
push:
branches:
- main
workflow_dispatch:
name: Publish Website
jobs:
publish:
name: Publish Website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
working-directory: ./docs
- name: Build site
run: npm run build
working-directory: ./docs
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npx gh-pages -d build --dotfiles --nojekyll -u "github-actions-bot <[email protected]>"
working-directory: ./docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}