-
-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2555 from galacean/chore/typedoc-action
feat: add github action to generate typedoc json automatically
- Loading branch information
Showing
2 changed files
with
72 additions
and
7 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,66 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Generate TypeDoc | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
steps: | ||
- name: Checkout Engine repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
run_install: true | ||
|
||
# after pnpm | ||
- name: Use Node.js LTS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '>=22.6.0' | ||
registry-url: https://registry.npmjs.org/ | ||
cache: pnpm | ||
|
||
- name: Build Engine | ||
run: pnpm b:all | ||
|
||
- name: Ensure TypeDoc Directory Exists | ||
run: mkdir -p ${{ github.workspace }}/galacean-typedoc/dist | ||
|
||
- name: Create package.json for galacean-typedoc | ||
run: | | ||
VERSION=$(jq -r '.version' ${{ github.workspace }}/packages/galacean/package.json) | ||
echo "{\"name\": \"galacean-typedoc\", \"version\": \"$VERSION\"}" > ${{ github.workspace }}/galacean-typedoc/package.json | ||
cat ${{ github.workspace }}/galacean-typedoc/package.json | ||
- name: Set execute permission for typedoc.sh | ||
run: chmod +x ./scripts/typedoc.sh | ||
|
||
- name: Generate TypeDoc Json | ||
run: ./scripts/typedoc.sh | ||
|
||
- name: Upload Typedoc JSON to CDN | ||
uses: galacean/publish@main | ||
if: success() || failure() | ||
with: | ||
publish: false | ||
packages: | | ||
galacean-typedoc | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
NPM_CONFIG_PROVENANCE: true | ||
OASISBE_UPLOAD_URL: https://oasisbe.alipay.com/api/file/no-auth/crypto/upload | ||
OASISBE_REQUEST_HEADER: ${{secrets.OASISBE_REQUEST_HEADER}} | ||
OASISBE_PUBLIC_KEY: ${{secrets.OASISBE_PUBLIC_KEY}} |
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