-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
1 changed file
with
63 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,63 @@ | ||
name: Update website and bot's API docs | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
website: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: 'sern-handler/website' | ||
token: ${{ secrets.AUTOMATA_TOKEN }} | ||
- name: Setup node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
- name: Install dependencies | ||
run: yarn --frozen-lockfile | ||
- name: Move docusaurus config files | ||
run: | | ||
mv ./docusaurus.config.js ./original.docusaurus.config.js | ||
mv ./docgen.docusaurus.config.js ./docusaurus.config.js | ||
- name: Build website | ||
run: yarn build | ||
- name: Revert moved config files | ||
run: | | ||
mv docusaurus.config.js docgen.docusaurus.config.js | ||
mv original.docusaurus.config.js docusaurus.config.js | ||
- name: Push to repo | ||
run: | | ||
git add . | ||
git commit -m "docs: Update API section" | ||
git push | ||
community-bot: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: 'sern-handler/sern-community' | ||
token: ${{ secrets.AUTOMATA_TOKEN }} | ||
- name: Setup node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.x' | ||
- name: Install dependencies | ||
run: yarn --frozen-lockfile | ||
- name: Clone handler repo & install deps | ||
run: | | ||
git clone https://github.com/sern-handler/handler.git ../sernHandlerV2 | ||
cd ../sernHandlerV2 | ||
yarn --frozen-lockfile | ||
yarn build:dev | ||
cd ${{ github.workspace }} | ||
- name: Generate API docs | ||
run: typedoc --json ./docs.json --pretty --entryPoints ../sernHandlerV2/src/index.ts --tsconfig ../sernHandlerV2/tsconfig.json --excludeExternals | ||
- name: Push to repo | ||
run: | | ||
git add . | ||
git commit -m "docs: Update API section" | ||
git push |