fix builds

This commit is contained in:
Cloudburst 2022-10-26 22:39:36 +02:00
parent c9c339795a
commit fa6a620bf9
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ jobs:
echo "key_pwd=$KEY_PWD" >> $GITHUB_OUTPUT
- name: Run Gradle
run: |
./gradlew assemblePrereleaseRelease makeJar androidSourcesJar
./gradlew assemblePrerelease makeJar androidSourcesJar
env:
SIGNING_KEY_ALIAS: "key0"
SIGNING_KEY_PASSWORD: ${{ steps.fetch_keystore.outputs.key_pwd }}

View File

@ -226,7 +226,7 @@ tasks.register("androidSourcesJar", Jar::class) {
// this is used by the gradlew plugin
tasks.register("makeJar", Copy::class) {
from("build/intermediates/compile_app_classes_jar/debug")
from("build/intermediates/compile_app_classes_jar/prereleaseDebug")
into("build")
include("classes.jar")
dependsOn("build")