We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f967d4 commit 40762e5Copy full SHA for 40762e5
maven-binding-builder/src/main/kotlin/io/github/typesafegithub/workflows/mavenbinding/ModuleBuilding.kt
@@ -2,9 +2,8 @@ package io.github.typesafegithub.workflows.mavenbinding
2
3
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
4
5
-internal fun ActionCoords.buildModuleFile(): String {
6
- val name = name.replace("__", "/")
7
- return """
+internal fun ActionCoords.buildModuleFile(): String =
+ """
8
{
9
"formatVersion": "1.1",
10
"component": {
@@ -64,4 +63,3 @@ internal fun ActionCoords.buildModuleFile(): String {
64
63
]
65
}
66
""".trimIndent()
67
-}
0 commit comments