client

Clone or download

replaced exe with msi

Modified Files

--- 'a/.github/scripts/jpackage.bat'
+++ b/.github/scripts/jpackage.bat
@@ -9,7 +9,7 @@ set /p VERSION=<version.txt
--copyright "Copyright 2019-21 Debayan Sutradhar (rnayabed), Samuel Quiñones (SamuelQuinones)" ^
--input target/lib ^
--main-jar client-%VERSION%.jar ^
---type exe ^
+--type msi ^
--java-options "-Dprism.verbose=true -Djavafx.verbose=true -Dprism.dirtyopts=false" ^
--main-class %MAIN_CLASS% ^
--arguments "-DStream-Pi.startupRunnerFileName='Stream-Pi Client.exe'" ^
@@ -25,5 +25,5 @@ echo Done now renaming ..
cd %INSTALL_DIR%
echo run dir
dir
-ren *.exe stream-pi-client-windows-x64-%VERSION%-installer.exe
+ren *.msi stream-pi-client-windows-x64-%VERSION%-installer.msi
dir
\ No newline at end of file
--- 'a/.github/workflows/build.yml'
+++ b/.github/workflows/build.yml
@@ -194,8 +194,8 @@ jobs:
- name: Saving Windows x64 EXE
uses: actions/upload-artifact@v2
with:
- name: windows-exe
- path: target/install/*.exe
+ name: windows-msi
+ path: target/install/*.msi
armv32_job:
runs-on: ubuntu-18.04
--- 'a/.github/workflows/release.yml'
+++ b/.github/workflows/release.yml
@@ -18,11 +18,11 @@ jobs:
- name: Add Version to environment
run: |
echo "VERSION=$(<version.txt)" >> $GITHUB_ENV
- - name: Download windows exe
+ - name: Download windows msi
uses: dawidd6/action-download-artifact@v2
with:
workflow: build.yml
- name: windows-exe
+ name: windows-msi
path: target/install
- name: Download linux deb
uses: dawidd6/action-download-artifact@v2