Skip to content

fix with animation

fix with animation #54

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: 18
cache: yarn
- name: Build
run: |
cd docs
yarn install --frozen-lockfile --non-interactive
yarn build
- name: Checkout Docs repo
uses: actions/checkout@v3
with:
repository: ceceppa/anima-doc
path: ./docs/anima-doc
token: ${{ secrets.TOKEN }}
- name: Deploy
shell: bash {0}
run: |
cd docs/anima-doc
git config user.name "GitHub Actions Bot"
git config user.email "<[email protected]>"
rm -rf *
cp -r ../build/* .
git add .
git commit -m "Update docs"
git push origin main