Skip to content

Fix: enhance ProducerClosedException with detailed error information … #311

Fix: enhance ProducerClosedException with detailed error information …

Fix: enhance ProducerClosedException with detailed error information … #311

Workflow file for this run

name: Docusaurus
on:
push:
branches:
- master
permissions:
contents: write
jobs:
publish:
name: Publish Website
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install and Build 🔧
working-directory: ./website
run: |
yarn install --frozen-lockfile
yarn build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: website/build # The folder the action should deploy.
clean: true