Skip to content

try fix doc build

try fix doc build #10

Workflow file for this run

name: "anima doc"
on: push
jobs:
build-docusaurus:
name: Build Docusaurus
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
- name: Build
run: |
cd docs
yarn install --frozen-lockfile --non-interactive
yarn build
cd build
git init
git branch -M main
git remote add origin https://github.com/ceceppa/anima-doc.git
git config user.name "GitHub Actions Bot"
git config user.email "<senesealessandro@gmail.com>"
git add .
git commit -m "Documentation"
git push origin main --force