mirror of
https://gitea.com/actions/release-action.git
synced 2024-11-22 06:00:59 -05:00
fix: add missing newline to print
This commit is contained in:
parent
a8b2cfa7e9
commit
01d0cdbcc8
1 changed files with 1 additions and 1 deletions
2
main.go
2
main.go
|
@ -139,7 +139,7 @@ func createOrGetRelease(ctx *gha.GitHubContext, c *gitea.Client, owner, repo str
|
||||||
if resp.StatusCode != 404 {
|
if resp.StatusCode != 404 {
|
||||||
return nil, errMessage
|
return nil, errMessage
|
||||||
}
|
}
|
||||||
fmt.Printf("%s trying to create it", errMessage)
|
fmt.Printf("%s trying to create it\n", errMessage)
|
||||||
// Create the release
|
// Create the release
|
||||||
release, _, err = c.CreateRelease(owner, repo, opts)
|
release, _, err = c.CreateRelease(owner, repo, opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue