server

Clone or download

replaced exe with msi installer

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 server-%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=run_min.exe ^
@@ -26,5 +26,5 @@ echo Done now renaming ..
cd %INSTALL_DIR%
echo run dir
dir
-ren *.exe stream-pi-server-windows-x64-%VERSION%-installer.exe
+ren *.msi stream-pi-server-windows-x64-%VERSION%-installer.msi
dir
\ No newline at end of file
--- 'a/.github/workflows/build.yml'
+++ b/.github/workflows/build.yml
@@ -51,7 +51,7 @@ jobs:
- name: Add REQ_MODULES to environment
run: |
echo "REQ_MODULES=$(<req_modules.txt)" >> $GITHUB_ENV
- - name: Create Bundle using JPackage
+ - name: Create DEB, ZIP
run: |
# Create DEB
.github/scripts/jpackage.sh \
@@ -198,8 +198,8 @@ jobs:
JAVAFX_JMODS: D:\javafx-jmods-17\
JPACKAGE_HOME: ${{ env.JAVA_HOME }}
INSTALL_DIR: target/install
- - name: Saving Windows x64 EXE
+ - name: Saving Windows x64 MSI
uses: actions/upload-artifact@v2
with:
- name: windows-exe
- path: target/install/*.exe
+ name: windows-msi
+ path: target/install/*.msi