We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1053d8 commit 8b4984aCopy full SHA for 8b4984a
.github/workflows/release.yml
@@ -21,13 +21,13 @@ jobs:
21
distribution: 'adopt'
22
- name: Build
23
run: |
24
- ./gradlew build
+ ./gradlew shadowJar
25
- name: Release
26
uses: softprops/action-gh-release@v2
27
with:
28
# Configuring release name and tag.
29
name: Build \#${{ github.run_number }}
30
tag_name: ${{ github.run_number }}
31
# Configuring files that are attached to the release.
32
- files: "build/libs/LuaStubGen-1.0-SNAPSHOT.jar"
+ files: "build/libs/LuaStubGen-1.0-SNAPSHOT-all.jar"
33
build.gradle.kts
@@ -1,5 +1,6 @@
1
plugins {
2
kotlin("jvm") version "2.1.10"
3
+ id("com.gradleup.shadow") version "8.3.6"
4
}
5
6
group = "win.templeos"
0 commit comments