2017-02-28 09:37:07 -03:00
|
|
|
build:
|
2017-04-21 20:23:24 -03:00
|
|
|
binary: task
|
2021-09-04 22:56:39 +01:00
|
|
|
main: ./cmd/task
|
2017-02-28 09:37:07 -03:00
|
|
|
goos:
|
|
|
|
- windows
|
|
|
|
- darwin
|
|
|
|
- linux
|
2023-04-15 18:17:17 -03:00
|
|
|
- freebsd
|
2017-02-28 09:37:07 -03:00
|
|
|
goarch:
|
2023-02-19 22:28:17 -03:00
|
|
|
- '386'
|
2017-02-28 09:37:07 -03:00
|
|
|
- amd64
|
2021-01-03 19:10:28 -03:00
|
|
|
- arm
|
|
|
|
- arm64
|
|
|
|
goarm:
|
2023-02-19 22:28:17 -03:00
|
|
|
- '6'
|
2017-06-14 15:28:35 -03:00
|
|
|
ignore:
|
|
|
|
- goos: darwin
|
2023-02-19 22:28:17 -03:00
|
|
|
goarch: '386'
|
2018-06-24 10:51:04 -03:00
|
|
|
env:
|
|
|
|
- CGO_ENABLED=0
|
2022-08-10 15:33:17 +02:00
|
|
|
mod_timestamp: '{{ .CommitTimestamp }}'
|
|
|
|
flags:
|
|
|
|
- -trimpath
|
2021-04-23 17:33:13 -03:00
|
|
|
ldflags:
|
|
|
|
- -s -w # Don't set main.version.
|
|
|
|
|
|
|
|
gomod:
|
|
|
|
proxy: true
|
2017-06-14 15:28:35 -03:00
|
|
|
|
2019-08-11 23:15:06 -03:00
|
|
|
archives:
|
|
|
|
- name_template: "{{.Binary}}_{{.Os}}_{{.Arch}}"
|
2021-10-27 14:44:10 -03:00
|
|
|
files:
|
|
|
|
- README.md
|
|
|
|
- LICENSE
|
|
|
|
- completion/**/*
|
2019-08-11 23:15:06 -03:00
|
|
|
format_overrides:
|
|
|
|
- goos: windows
|
|
|
|
format: zip
|
2017-06-14 15:28:35 -03:00
|
|
|
|
2017-06-19 20:31:03 -03:00
|
|
|
release:
|
|
|
|
draft: true
|
2017-06-19 20:48:39 -03:00
|
|
|
|
2018-03-11 15:31:27 -03:00
|
|
|
snapshot:
|
|
|
|
name_template: "{{.Tag}}"
|
|
|
|
|
2018-03-11 15:58:32 -03:00
|
|
|
checksum:
|
|
|
|
name_template: "task_checksums.txt"
|
|
|
|
|
2019-08-11 23:15:06 -03:00
|
|
|
nfpms:
|
|
|
|
- vendor: Task
|
2022-05-31 18:22:56 -03:00
|
|
|
homepage: https://taskfile.dev
|
|
|
|
maintainer: Andrey Nering <andrey@nering.com.br>
|
2019-08-11 23:15:06 -03:00
|
|
|
description: Simple task runner written in Go
|
|
|
|
license: MIT
|
|
|
|
conflicts:
|
|
|
|
- taskwarrior
|
|
|
|
formats:
|
|
|
|
- deb
|
|
|
|
- rpm
|
2020-05-14 20:48:33 +02:00
|
|
|
file_name_template: "{{.ProjectName}}_{{.Os}}_{{.Arch}}"
|
2022-01-14 20:48:28 +11:00
|
|
|
contents:
|
|
|
|
- src: completion/bash/task.bash
|
|
|
|
dst: /etc/bash_completion.d/task
|
|
|
|
- src: completion/fish/task.fish
|
|
|
|
dst: /usr/share/fish/completions/task.fish
|
|
|
|
- src: completion/zsh/_task
|
|
|
|
dst: /usr/local/share/zsh/site-functions/_task
|
2021-09-04 21:26:17 -03:00
|
|
|
|
|
|
|
brews:
|
|
|
|
- name: go-task
|
|
|
|
description: Task runner / simpler Make alternative written in Go
|
|
|
|
license: MIT
|
|
|
|
homepage: https://taskfile.dev
|
|
|
|
folder: Formula
|
|
|
|
tap:
|
|
|
|
owner: go-task
|
|
|
|
name: homebrew-tap
|
|
|
|
test:
|
|
|
|
system "#{bin}/task", "--help"
|
2021-10-27 14:44:10 -03:00
|
|
|
install: |-
|
|
|
|
bin.install "task"
|
|
|
|
bash_completion.install "completion/bash/task.bash" => "task"
|
|
|
|
zsh_completion.install "completion/zsh/_task" => "_task"
|
|
|
|
fish_completion.install "completion/fish/task.fish"
|
2022-05-31 18:22:56 -03:00
|
|
|
commit_author:
|
|
|
|
name: task-bot
|
|
|
|
email: 106601941+task-bot@users.noreply.github.com
|