Skip to content

Bump fast-uri from 3.1.0 to 3.1.2 in /website #312

Bump fast-uri from 3.1.0 to 3.1.2 in /website

Bump fast-uri from 3.1.0 to 3.1.2 in /website #312

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