0
1
mirror of https://gitea.com/actions/release-action synced 2024-06-01 19:58:04 +02:00

fix: add missing newline to print

This commit is contained in:
myrqs 2023-05-04 19:52:51 +02:00
parent a8b2cfa7e9
commit 01d0cdbcc8

View File

@ -139,7 +139,7 @@ func createOrGetRelease(ctx *gha.GitHubContext, c *gitea.Client, owner, repo str
if resp.StatusCode != 404 {
return nil, errMessage
}
fmt.Printf("%s trying to create it", errMessage)
fmt.Printf("%s trying to create it\n", errMessage)
// Create the release
release, _, err = c.CreateRelease(owner, repo, opts)
if err != nil {