diff options
author | elilchen <[email protected]> | 2023-02-16 22:18:27 +0800 |
---|---|---|
committer | elilchen <[email protected]> | 2023-02-16 22:18:27 +0800 |
commit | 85150127bbae9fc52358a4e152d5571444a1644c (patch) | |
tree | 2797e44c1afe9fb4b60fe74bdebbe5ebe1838543 /.github | |
parent | 388ae586ecb34e57bf6f58ea7dc446b5768a9e0c (diff) | |
download | rustdesk-server-85150127bbae9fc52358a4e152d5571444a1644c.tar.gz rustdesk-server-85150127bbae9fc52358a4e152d5571444a1644c.zip |
vite build
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 |