Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.github.typesafegithub.workflows.mavenbinding

import io.github.typesafegithub.workflows.actionbindinggenerator.domain.ActionCoords
import io.github.typesafegithub.workflows.actionbindinggenerator.domain.fullName
import io.github.typesafegithub.workflows.shared.internal.fetchAvailableVersions
import java.time.format.DateTimeFormatter

Expand All @@ -18,7 +17,7 @@ internal suspend fun ActionCoords.buildMavenMetadataFile(githubToken: String): S
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>$owner</groupId>
<artifactId>$fullName</artifactId>
<artifactId>$mavenName</artifactId>
<versioning>
<latest>$newest</latest>
<release>$newest</release>
Expand Down
Loading