Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielBelmes committed Dec 5, 2023
1 parent d15fced commit 86f32f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Run a multi-line script
run: |
npm run build
ENGINE_PATH=/etherealengine npm run typedoc
ENGINE_PATH=./etherealengine npm run typedoc
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion typedoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const { spawn } = require("child_process");
const appRootPath = require('app-root-path')
const dotenv = require('dotenv').config({
path: appRootPath.path + '/.env.local.default'
path: appRootPath.path + '/.env.local'
})

const typedoc = spawn("npx", ["typedoc", process.env.ENGINE_PATH, "--options", `${process.env.ENGINE_PATH}/typedoc.json`, "--out", "./build/typedoc"])
Expand Down

0 comments on commit 86f32f0

Please sign in to comment.