Skip to content

Commit

Permalink
build: fixe publish pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4rl3x committed Apr 17, 2024
1 parent 493dfb9 commit c0d9134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ publishing {

// Two artifacts, the `aar` (or `jar`) and the sources
if (project.plugins.findPlugin("com.android.library")) {
artifact("${getLayout().buildDirectory}/outputs/aar/${project.getName()}-release.aar")
artifact("${getLayout().buildDirectory.asFile.get()}/outputs/aar/${project.getName()}-release.aar")
} else {
artifact("${getLayout().buildDirectory}/libs/${project.getName()}-${version}.jar")
artifact("${getLayout().buildDirectory.asFile.get()}/libs/${project.getName()}-${version}.jar")
}
artifact androidSourcesJar

Expand Down

0 comments on commit c0d9134

Please sign in to comment.