fix: correctly unmarshal entrypoint (#876)

Signed-off-by: hackercat <me@hackerc.at>

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Ryan
2021-11-13 20:43:31 +01:00
committed by GitHub
parent ec34eb9532
commit 12fa4d703d
3 changed files with 12 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ type ActionRuns struct {
Env map[string]string `yaml:"env"`
Main string `yaml:"main"`
Image string `yaml:"image"`
Entrypoint []string `yaml:"entrypoint"`
Entrypoint string `yaml:"entrypoint"`
Args []string `yaml:"args"`
Steps []Step `yaml:"steps"`
}