Moved installer to dedicated build directory to avoid github action issues

This commit is contained in:
Josh Larson
2022-07-05 03:08:29 -05:00
parent f0b6c0d97b
commit a33ee52353
2 changed files with 2 additions and 2 deletions

View File

@@ -18,9 +18,8 @@ jobs:
with:
java-version: 17
- run: ./gradlew --no-daemon clean test jpackage
- run: mkdir staging && cp build/jpackage/*.* staging/
- name: Upload
uses: actions/upload-artifact@v2
with:
name: ProjectSWG-${{matrix.os}}
path: staging
path: build/installer

View File

@@ -139,6 +139,7 @@ jlink {
imageName = "ProjectSWG"
installerName = "ProjectSWG"
installerOutputDir = File("${buildDir.absolutePath}/installer")
installerType = when(platform) {
"linux" -> "deb"