Skip to content

Commit 165687f

Browse files
authored
fix(server): use correct coordinates in generated Maven metadata file (#1610)
1 parent 709955f commit 165687f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/MavenMetadataBuilding.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package io.github.typesafegithub.workflows.mavenbinding
22

33
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
4-
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.fullName
54
import io.github.typesafegithub.workflows.shared.internal.fetchAvailableVersions
65
import java.time.format.DateTimeFormatter
76

@@ -18,7 +17,7 @@ internal suspend fun ActionCoords.buildMavenMetadataFile(githubToken: String): S
1817
<?xml version="1.0" encoding="UTF-8"?>
1918
<metadata>
2019
<groupId>$owner</groupId>
21-
<artifactId>$fullName</artifactId>
20+
<artifactId>$mavenName</artifactId>
2221
<versioning>
2322
<latest>$newest</latest>
2423
<release>$newest</release>

0 commit comments

Comments
 (0)