Fix vet
This commit is contained in:
parent
e177d49a3a
commit
c3cc5befd6
1 changed files with 3 additions and 3 deletions
6
main.go
6
main.go
|
@ -16,7 +16,7 @@ import (
|
||||||
func main() {
|
func main() {
|
||||||
ctx, err := gha.Context()
|
ctx, err := gha.Context()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
gha.Fatalf("failed to get context: %w", err)
|
gha.Fatalf("failed to get context: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !strings.HasPrefix(ctx.Ref, "refs/tags/") {
|
if !strings.HasPrefix(ctx.Ref, "refs/tags/") {
|
||||||
|
@ -61,7 +61,7 @@ func main() {
|
||||||
// Note: rc.Note,
|
// Note: rc.Note,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
gha.Fatalf("failed to create release: %w", err)
|
gha.Fatalf("failed to create release: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
matchedFiles, err := getFiles(ctx.Workspace, files)
|
matchedFiles, err := getFiles(ctx.Workspace, files)
|
||||||
|
@ -70,7 +70,7 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := uploadFiles(ctx, c, owner, repo, rel.ID, matchedFiles); err != nil {
|
if err := uploadFiles(ctx, c, owner, repo, rel.ID, matchedFiles); err != nil {
|
||||||
gha.Fatalf("Failed to upload files: %w", err)
|
gha.Fatalf("Failed to upload files: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gha.SetOutput("status", "success")
|
gha.SetOutput("status", "success")
|
||||||
|
|
Reference in a new issue