Skip to content

fix(doc): Add why i choose layering #14

fix(doc): Add why i choose layering

fix(doc): Add why i choose layering #14

Workflow file for this run

name: Deploy Docusaurus doc to github Pages
on:
push:
branches:
- Doc/Main
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
env:
REACT_APP_GITHUB_TOKEN: ${{ secrets.REACT_APP_GITHUB_TOKEN }}
REACT_APP_ENV: prod
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: Doc/Release
publish_dir: ./build
user_name: batleforc
user_email: maxleriche.60@gmail.com