diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index 26f6d018..e30996e8 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -62,17 +62,17 @@ jobs: env: WORKFLOW_RUN: ${{ github.run_number }} run: ./gradlew.bat dist -PSNAPSHOT=true - - name: Build msi package + - name: Build exe package env: WORKFLOW_RUN: ${{ github.run_number }} run: ./gradlew.bat jpackage -PSNAPSHOT=true - name: Fix file names - run: mv build/jpackage/*.msi Windows.HyperLap2D-SNAPSHOT.msi - - name: Upload msi artifact + run: mv build/jpackage/*.exe Windows.HyperLap2D-SNAPSHOT.exe + - name: Upload exe artifact uses: actions/upload-artifact@v2 with: - name: Windows.HyperLap2D-SNAPSHOT.msi - path: Windows.HyperLap2D-SNAPSHOT.msi + name: Windows.HyperLap2D-SNAPSHOT.exe + path: Windows.HyperLap2D-SNAPSHOT.exe macOS: if: "!contains(github.event.head_commit.message, 'cd skip')" diff --git a/assets/plugins/plugin-9patch-0.1.0.jar b/assets/plugins/plugin-9patch-0.1.0.jar index 75c022e5..3933d307 100644 Binary files a/assets/plugins/plugin-9patch-0.1.0.jar and b/assets/plugins/plugin-9patch-0.1.0.jar differ diff --git a/assets/plugins/plugin-performance-0.1.0.jar b/assets/plugins/plugin-performance-0.1.0.jar index d636e027..742285e3 100644 Binary files a/assets/plugins/plugin-performance-0.1.0.jar and b/assets/plugins/plugin-performance-0.1.0.jar differ diff --git a/assets/plugins/plugin-skin-composer-0.1.0.jar b/assets/plugins/plugin-skin-composer-0.1.0.jar index 32cdc89e..5baee1ae 100644 Binary files a/assets/plugins/plugin-skin-composer-0.1.0.jar and b/assets/plugins/plugin-skin-composer-0.1.0.jar differ diff --git a/assets/plugins/plugin-tiled-0.1.0.jar b/assets/plugins/plugin-tiled-0.1.0.jar index 16b98bae..1d0ed88a 100644 Binary files a/assets/plugins/plugin-tiled-0.1.0.jar and b/assets/plugins/plugin-tiled-0.1.0.jar differ diff --git a/build.gradle b/build.gradle index 82595144..703fa17a 100644 --- a/build.gradle +++ b/build.gradle @@ -165,7 +165,7 @@ runtime { installerOptions += ['--license-file', 'LICENSE'] if (osName.contains('windows')) { imageOptions += ["--icon", file("icons/icon.ico")] - installerType = 'msi' + installerType = 'exe' installerOptions += ['--win-dir-chooser', '--win-menu', '--win-menu-group', 'HyperLap2D', '--win-shortcut', '--win-shortcut-prompt', '--vendor', 'Red & Black Games', '--description', 'HyperLap2D Editor',