Merge remote-tracking branch 'refs/remotes/origin/main' #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | ||
deploy: | ||
environment: | ||
name: docusaurus | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
working-directory: docs | ||
with: | ||
node-version: 16.x | ||
cache: yarn | ||
- name: Install dependencies | ||
working-directory: docs | ||
run: yarn install --frozen-lockfile --non-interactive | ||
- name: Build | ||
working-directory: docs | ||
run: yarn build | ||
- name: setup git config | ||
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 |