Skip to content

Commit 97190dd

Browse files
committed
Prevent dot from appearing in installer name
1 parent 92e7a4f commit 97190dd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
uses: actions/upload-artifact@v3
8181
with:
8282
name: listFix-windows-installer-exe-${{ steps.gitDescribe.outputs.describe }}
83-
path: build/jpackage/listFix()-*.exe
83+
path: build/jpackage/listFix-*.exe
8484
- name: Upload Windows binaries
8585
id: upload_artifact_binaries
8686
uses: actions/upload-artifact@v3

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ task fatJar(type: Jar) {
227227
}
228228
setDuplicatesStrategy(DuplicatesStrategy.WARN)
229229
archiveBaseName = 'listFix'
230+
archiveVersion = project.version
230231
archiveClassifier = 'all'
231232
from { configurations.runtimeClasspath.filter { it.exists() }.collect { it.isDirectory() ? it : zipTree(it) } }
232233
with jar

0 commit comments

Comments
 (0)