Skip to content

Commit

Permalink
ci: add action for deploying docs (#1)
Browse files Browse the repository at this point in the history
Co-authored-by: liaosy <liaosy@infinilabs.com>
  • Loading branch information
liaosy21 and liaosy authored Nov 29, 2024
1 parent 6507af0 commit 67393d0
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/build_docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build docs and push to the docs repo

on:
push:
branches: ["main"]

permissions:
contents: read

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install dependencies
run: npm install

# Build the documents, build target will be placed under the `./out` directory
- name: Build
run: npm run build

- name: Check out the `docs` repo
uses: actions/checkout@v4
with:
repository: infinilabs/docs
path: docs-output # It will be cloned to the `./docs-output` directory
token: ${{ secrets.DOCS_DEPLOYMENT_TOKEN }}

- name: Push the contents under dir `out`
working-directory: docs-output # set the PWD for all the scripts in this step
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
cp -R ../out/* .
if [[ -n $(git status --porcelain) ]]; then
echo "diff to commit:"
git status
git add .
git commit -m "docs updated by commits to the doc-home repo"
git push origin main
else
echo "No changes to commit."
fi

0 comments on commit 67393d0

Please sign in to comment.