Skip to content

Commit

Permalink
fix: parameter handling in GitHub action mode
Browse files Browse the repository at this point in the history
  • Loading branch information
szkiba committed Oct 7, 2024
1 parent 238e542 commit f64caac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func AddGitHubArgs(args []string, flags *pflag.FlagSet) ([]string, error) {

args = make([]string, 0)

flags.Visit(func(flag *pflag.Flag) {
flags.VisitAll(func(flag *pflag.Flag) {
args = ghinput(args, flag)
})

Expand Down
2 changes: 0 additions & 2 deletions cmd/k6dist/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ func newCmd(args []string, levelVar *slog.LevelVar) (*cobra.Command, error) {
return nil, err
}

slog.Debug("arguments", "args", args)

root.SetArgs(args)

return root, nil
Expand Down
3 changes: 3 additions & 0 deletions releases/v0.1.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
🎉 k6dist `v0.1.5` is here!

Fix input parameter handling in GitHub Action mode.

0 comments on commit f64caac

Please sign in to comment.