diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b172b8e..025854b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -105,6 +105,11 @@ jobs: scoop bucket add extras scoop install nsis + - name: Install Node.js + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Sign exe files uses: GermanBluefox/code-sign-action@v7 with: @@ -114,6 +119,11 @@ jobs: folder: 'target\x86_64-pc-windows-msvc\release' recursive: false + - name: Build UI browser file + run: | + npm run build + working-directory: ./ui/html + - name: Build UI setup file run: | rustup default nightly |