Skip to content

Commit

Permalink
Remove v from published version if present (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
lopcode authored Aug 20, 2024
1 parent 66bc0e3 commit 2f8754a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ publishing {
create<MavenPublication>("mavenJava") {
groupId = "app.photofox.vipsffm"
artifactId = "vips-ffm-core"
version = System.getenv("GITHUB_VERSION")
version = System.getenv("GITHUB_VERSION")?.removePrefix("v")

from(components["java"])

Expand Down

0 comments on commit 2f8754a

Please sign in to comment.