We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dcbc6b commit f7e4061Copy full SHA for f7e4061
1 file changed
.github/workflows/webpack.yml
@@ -22,11 +22,10 @@ jobs:
22
with:
23
node-version: ${{ matrix.node-version }}
24
25
- - name: Build Frontend
26
- run: cd frontend && npm install && npm run build
27
-
28
- - name: Build Daemon
29
- run: cd daemon && npm install && npm run build
30
31
- - name: Build Panel
32
- run: cd panel && npm install && npm run build
+ - name: Run Build Script
+ run: |
+ chmod a+x ./install-dependents.sh
+ chmod a+x ./build.sh
+ ./install-dependents.sh
+ ./build.sh
+
0 commit comments