Skip to content

Commit 40762e5

Browse files
committed
fix(abg): use correct coordinates and file names in generated GMM file
1 parent 6f967d4 commit 40762e5

File tree

1 file changed

+2
-4
lines changed
  • maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding

1 file changed

+2
-4
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ package io.github.typesafegithub.workflows.mavenbinding
22

33
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
44

5-
internal fun ActionCoords.buildModuleFile(): String {
6-
val name = name.replace("__", "/")
7-
return """
5+
internal fun ActionCoords.buildModuleFile(): String =
6+
"""
87
{
98
"formatVersion": "1.1",
109
"component": {
@@ -64,4 +63,3 @@ internal fun ActionCoords.buildModuleFile(): String {
6463
]
6564
}
6665
""".trimIndent()
67-
}

0 commit comments

Comments
 (0)