Skip to content

Commit

Permalink
feat(action): print a message on success
Browse files Browse the repository at this point in the history
Signed-off-by: AtomicFS <[email protected]>
  • Loading branch information
AtomicFS committed Jun 14, 2024
1 parent f8081de commit 76093d9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions action/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ func run(ctx context.Context) error {
myConfig,
recipes.Execute,
)
if err == nil {
slog.Info("Build finished successfully")
}
return err
}

Expand Down

0 comments on commit 76093d9

Please sign in to comment.