diff --git a/act/container/host_environment.go b/act/container/host_environment.go index 48b2a677..760e2c5e 100644 --- a/act/container/host_environment.go +++ b/act/container/host_environment.go @@ -473,7 +473,9 @@ func goArchToActionArch(arch string) string { func goOsToActionOs(os string) string { osMapper := map[string]string{ - "darwin": "macOS", + "linux": "Linux", + "windows": "Windows", + "darwin": "macOS", } if os, ok := osMapper[os]; ok { return os