Normalise Runs.Using to lowercase (#222)
Currently, providing `using: Docker` is an error as the switch statement in `step_context.go` is case sensitive. Actions run successfully on GitHub with `using: Docker` leading me to believe that they're case insensitive. This commit updates `act` to match Co-authored-by: Casey Lee <cplee@nektos.com>
This commit is contained in:
parent
195a6c9ffb
commit
ef9fab9fad
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,7 @@ package model
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
@ -53,5 +54,9 @@ type Output struct {
|
||||||
func ReadAction(in io.Reader) (*Action, error) {
|
func ReadAction(in io.Reader) (*Action, error) {
|
||||||
a := new(Action)
|
a := new(Action)
|
||||||
err := yaml.NewDecoder(in).Decode(a)
|
err := yaml.NewDecoder(in).Decode(a)
|
||||||
|
|
||||||
|
// Normalise Runs.Using to lowercase so that Docker and docker are
|
||||||
|
// equivalent when evaluating a step context
|
||||||
|
a.Runs.Using = ActionRunsUsing(strings.ToLower(string(a.Runs.Using)))
|
||||||
return a, err
|
return a, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue