Skip to content

Commit

Permalink
Fix build working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Apr 19, 2024
1 parent 9359415 commit 175cb1d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
Build-for-linux:
name: Run npm on Ubuntu
runs-on: ubuntu-latest
defaults:
run:
working-directory: 'UI' # Here the path to the folder where package-lock.json is located.
steps:
- uses: actions/checkout@v4
- uses: awalsh128/cache-apt-pkgs-action@latest
Expand All @@ -38,6 +41,9 @@ jobs:
Build-for-mac:
name: Run npm on x64 macos
runs-on: macos-12
defaults:
run:
working-directory: 'UI' # Here the path to the folder where package-lock.json is located.
steps:
- uses: actions/checkout@v4
- name: Setup Node, Electron and built
Expand All @@ -60,6 +66,9 @@ jobs:
Build-for-win:
name: Run npm on x64 Windows
runs-on: windows-latest
defaults:
run:
working-directory: 'UI' # Here the path to the folder where package-lock.json is located.
steps:
- uses: actions/checkout@v4
- name: Setup Node, Electron and built
Expand Down

0 comments on commit 175cb1d

Please sign in to comment.