Skip to content

Commit

Permalink
Merge pull request #4075 from aquaproj/feat/go-task-windows
Browse files Browse the repository at this point in the history
feat(go-task/task): windows support
  • Loading branch information
suzuki-shunsuke committed Jun 16, 2022
2 parents 68f7f80 + d94437c commit df81d70
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
6 changes: 5 additions & 1 deletion pkgs/go-task/task/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@ packages:
- type: github_release
repo_owner: go-task
repo_name: task
asset: "task_{{.OS}}_{{.Arch}}.tar.gz"
description: A task runner / simpler Make alternative written in Go
asset: "task_{{.OS}}_{{.Arch}}.{{.Format}}"
format: tar.gz
overrides:
- goos: windows
format: zip
9 changes: 8 additions & 1 deletion registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -3603,8 +3603,15 @@
"type": "github_release"
},
{
"asset": "task_{{.OS}}_{{.Arch}}.tar.gz",
"asset": "task_{{.OS}}_{{.Arch}}.{{.Format}}",
"description": "A task runner / simpler Make alternative written in Go",
"format": "tar.gz",
"overrides": [
{
"format": "zip",
"goos": "windows"
}
],
"repo_name": "task",
"repo_owner": "go-task",
"type": "github_release"
Expand Down
6 changes: 5 additions & 1 deletion registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2397,8 +2397,12 @@ packages:
- type: github_release
repo_owner: go-task
repo_name: task
asset: "task_{{.OS}}_{{.Arch}}.tar.gz"
description: A task runner / simpler Make alternative written in Go
asset: "task_{{.OS}}_{{.Arch}}.{{.Format}}"
format: tar.gz
overrides:
- goos: windows
format: zip
- type: github_release
repo_owner: gocruncher
repo_name: jenkins-job-cli
Expand Down

0 comments on commit df81d70

Please sign in to comment.