mirror of https://gitea.com/gitea/act
23 lines
465 B
Go
23 lines
465 B
Go
package cmd
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func (i *Input) newPlatforms() map[string]string {
|
|
platforms := map[string]string{
|
|
"ubuntu-latest": "node:16-buster-slim",
|
|
"ubuntu-22.04": "node:16-bullseye-slim",
|
|
"ubuntu-20.04": "node:16-buster-slim",
|
|
"ubuntu-18.04": "node:16-buster-slim",
|
|
}
|
|
|
|
for _, p := range i.platforms {
|
|
pParts := strings.Split(p, "=")
|
|
if len(pParts) == 2 {
|
|
platforms[strings.ToLower(pParts[0])] = pParts[1]
|
|
}
|
|
}
|
|
return platforms
|
|
}
|