Skip to content

Commit

Permalink
Update hack/actions/gen/main.go
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroto Funakoshi <[email protected]>
  • Loading branch information
hlts2 authored and smorihira committed Sep 10, 2024
1 parent a876d3d commit a2b2772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/actions/gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ func main() {
log.Infof("Generating %s's workflow", data.Name)
workflow, err := data.generateWorkflowStruct()
if err != nil {
return fmt.Errorf("Error generating workflowStruct: %v", err)
return fmt.Errorf("Error generating workflowStruct: %w", err)
}
workflowYamlTmp, err := yaml.Marshal(workflow)
if err != nil {
Expand Down

0 comments on commit a2b2772

Please sign in to comment.