docs: add links to e-oz profile (#289) #106
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
name: Astro Docs Site | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'docs/**' | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
run_install: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: | | |
pnpm install --no-frozen-lockfile | |
pnpm --filter "docs" install --no-frozen-lockfile | |
- name: Create local build artifacts | |
run: | | |
echo "Building documentation..." | |
pnpm exec nx package docs | |
- name: Init git and commit local artifacts | |
run: | | |
cd docs/dist | |
git init | |
git add . | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git commit -am "docs: build doc" | |
- name: Push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: astro-docs | |
force: true | |
directory: docs/dist |