forked from microsoft/autogen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
“skzhang1”
committed
Sep 5, 2023
1 parent
da6ed2a
commit 18278c9
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: docs | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
path: | ||
- 'website/*' | ||
- '.github/workflows/deploy-website.yml' | ||
push: | ||
branches: [main] | ||
path: | ||
- 'website/*' | ||
- '.github/workflows/deploy-website.yml' | ||
workflow_dispatch: | ||
merge_group: | ||
types: [checks_requested] | ||
|
||
jobs: | ||
checks: | ||
if: github.event_name != 'push' | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: website | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
- name: setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
- name: Test Build | ||
run: | | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile --ignore-engines | ||
yarn build | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
npm run build | ||
else | ||
npm i --legacy-peer-deps | ||
npm run build | ||
fi | ||
gh-release: | ||
if: github.event_name != 'pull_request' | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: website | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14.x | ||
- name: setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
- name: Build website | ||
run: | | ||
if [ -e yarn.lock ]; then | ||
yarn install --frozen-lockfile --ignore-engines | ||
yarn build | ||
elif [ -e package-lock.json ]; then | ||
npm ci | ||
npm run build | ||
else | ||
npm i --legacy-peer-deps | ||
npm run build | ||
fi | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.ACCESS_TOKEN }} | ||
publish_dir: ./website/build |