Skip to content

Commit

Permalink
fix: webui not being built
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Feb 21, 2024
1 parent ce325d6 commit 49f9eb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
yarn config set httpTimeout 100000
yarn
yarn --cwd webui install
yarn dist
- name: Determine files to upload
Expand Down Expand Up @@ -91,6 +92,7 @@ jobs:
yarn config set httpTimeout 100000
yarn
yarn --cwd webui install
yarn dist linux-arm64
- name: Determine files to upload
Expand Down Expand Up @@ -143,6 +145,7 @@ jobs:
yarn config set httpTimeout 100000
yarn
yarn --cwd webui install
yarn dist
- name: Determine files to upload
Expand Down Expand Up @@ -195,6 +198,7 @@ jobs:
yarn config set httpTimeout 100000
yarn
yarn --cwd webui install
yarn dist
env:
CSC_LINK: ${{ secrets.OSX_CSC_LINK }}
Expand Down Expand Up @@ -253,6 +257,7 @@ jobs:
yarn config set httpTimeout 100000
yarn
yarn --cwd webui install
yarn dist mac-arm64
env:
CSC_LINK: ${{ secrets.OSX_CSC_LINK }}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
"install": "./node_modules/.bin/husky install",
"dev": "ts-node src/main.ts config.json",
"dev-electron": "run build:main && electron dist/electron.js",
"build": "rimraf dist && run build:main",
"build": "rimraf dist && run build:main && run build:webui",
"build:main": "tsc -p tsconfig.build.json",
"build:webui": "cd webui && yarn build",
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx",
"lint": "run lint:raw .",
"license-validate": "sofie-licensecheck",
Expand Down

0 comments on commit 49f9eb4

Please sign in to comment.