Skip to content

Commit

Permalink
Add support for darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
Finb authored Aug 16, 2022
1 parent 60be6c2 commit a4e0744
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,22 @@ tasks:
GOARCH: amd64,
GOAMD64: v4
}
darwin_amd64:
cmds:
- task: build-tpl
vars: {
TASK: "{{.TASK}}",
GOOS: darwin,
GOARCH: amd64,
}
darwin_arm64:
cmds:
- task: build-tpl
vars: {
TASK: "{{.TASK}}",
GOOS: darwin,
GOARCH: arm64,
}
docker:
cmds:
- docker build -t finab/bark-server:{{.BUILD_VERSION}} -f deploy/Dockerfile .
Expand Down Expand Up @@ -223,6 +239,8 @@ tasks:
- task: windows_amd64_v2.exe
- task: windows_amd64_v3.exe
- task: windows_amd64_v4.exe
- task: darwin_amd64
- task: darwin_arm64
release:
cmds:
- task: default
Expand Down

0 comments on commit a4e0744

Please sign in to comment.