Skip to content

fix yml

fix yml #5

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

Check failure on line 15 in .github/workflows/doc.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/doc.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
- name: Build
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<senesealessandro@gmail.com>"
cd docs
yarn install --frozen-lockfile --non-interactive
yarn build
cd build
git init
git commit -am "Documentation"
git remote add origin https://github.com/ceceppa/anima-doc.git
- run: git push origin main --force