Skip to content

Updated deploy.yml

Updated deploy.yml #37

Workflow file for this run

name: Deploy Docusaurus to GitHub Pages
on:
push:
branches:
- main # Change this if your primary branch is different
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
- name: Build Docusaurus
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build