Skip to content

Commit

Permalink
[Tech] replace '/' with '-' in upload maven script
Browse files Browse the repository at this point in the history
  • Loading branch information
kozarezvlad committed Oct 28, 2024
1 parent 2ea3795 commit 9746d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload-github.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ afterEvaluate {
maven(MavenPublication) {
groupId = "$artifactConfig.group"
artifactId = "$project.artifactId"
version = "$artifactConfig.version"
version = "$artifactConfig.version".replace("/", "-")

if (artifactId == "android") {
from components.release
Expand Down

0 comments on commit 9746d75

Please sign in to comment.