feat: shorten archive name to apktool-{version}.jar (#3289)

This commit is contained in:
Connor Tumbleson 2023-08-23 07:26:21 -04:00 committed by GitHub
parent 4862131a68
commit 7d76829ad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -100,4 +100,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: apktool.jar
path: brut.apktool/apktool-cli/build/libs/apktool-*-SNAPSHOT.jar
path: brut.apktool/apktool-cli/build/libs/apktool-v*

View File

@ -69,6 +69,6 @@ tasks.register<ProGuardTask>("proguard") {
dontwarn("javax.xml.xpath.**")
dontnote("**")
val outPath = "build/libs/apktool-cli-$apktoolVersion.jar"
val outPath = "build/libs/apktool-$apktoolVersion.jar"
outjars(outPath)
}