fix: add changelog + fix for booleans for #1641

This commit is contained in:
Andrey Nering
2024-05-09 11:21:12 -03:00
parent 3397f2855f
commit bfc9d7847d
3 changed files with 7 additions and 2 deletions

2
internal/env/env.go vendored
View File

@@ -29,7 +29,7 @@ func Get(t *ast.Task) []string {
func isTypeAllowed(v any) bool {
switch v.(type) {
case string, int, float32, float64:
case string, bool, int, float32, float64:
return true
default:
return false