-
-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ca75d4
commit c05b218
Showing
1 changed file
with
89 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,87 +54,87 @@ snapshot: | |
checksum: | ||
name_template: "task_checksums.txt" | ||
|
||
nfpms: | ||
- vendor: Task | ||
homepage: https://taskfile.dev | ||
maintainer: Andrey Nering <[email protected]> | ||
description: Simple task runner written in Go | ||
license: MIT | ||
conflicts: | ||
- taskwarrior | ||
formats: | ||
- deb | ||
- rpm | ||
file_name_template: "{{.ProjectName}}_{{.Os}}_{{.Arch}}" | ||
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 | ||
# nfpms: | ||
# - vendor: Task | ||
# homepage: https://taskfile.dev | ||
# maintainer: Andrey Nering <[email protected]> | ||
# description: Simple task runner written in Go | ||
# license: MIT | ||
# conflicts: | ||
# - taskwarrior | ||
# formats: | ||
# - deb | ||
# - rpm | ||
# file_name_template: "{{.ProjectName}}_{{.Os}}_{{.Arch}}" | ||
# 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 | ||
|
||
brews: | ||
- name: go-task | ||
description: Task runner / simpler Make alternative written in Go | ||
license: MIT | ||
homepage: https://taskfile.dev | ||
directory: Formula | ||
repository: | ||
owner: go-task | ||
name: homebrew-tap | ||
test: | ||
system "#{bin}/task", "--help" | ||
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" | ||
commit_author: | ||
name: task-bot | ||
email: [email protected] | ||
# brews: | ||
# - name: go-task | ||
# description: Task runner / simpler Make alternative written in Go | ||
# license: MIT | ||
# homepage: https://taskfile.dev | ||
# directory: Formula | ||
# repository: | ||
# owner: go-task | ||
# name: homebrew-tap | ||
# test: | ||
# system "#{bin}/task", "--help" | ||
# 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" | ||
# commit_author: | ||
# name: task-bot | ||
# email: [email protected] | ||
|
||
winget: | ||
- name: Task | ||
publisher: Task | ||
short_description: A task runner / simpler Make alternative written in Go | ||
description: Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make. | ||
license: MIT | ||
homepage: https://taskfile.dev/ | ||
publisher_url: https://taskfile.dev/ | ||
publisher_support_url: https://github.com/go-task/task/issues | ||
package_identifier: Task.Task | ||
commit_author: | ||
name: task-bot | ||
email: [email protected] | ||
commit_msg_template: "chore: bump {{.PackageIdentifier}} to {{.Tag}}" | ||
release_notes_url: https://github.com/go-task/task/releases/tag/{{.Tag}} | ||
tags: | ||
- build | ||
- build-tool | ||
- devops | ||
- go | ||
- make | ||
- makefile | ||
- runner | ||
- task | ||
- task-runner | ||
- taskfile | ||
- tool | ||
skip_upload: true | ||
repository: | ||
owner: microsoft | ||
name: winget-pkgs | ||
pull_request: | ||
enabled: true | ||
base: | ||
owner: go-task | ||
name: winget-pkgs | ||
branch: "bump-task-to-{{.Tag}}" | ||
# winget: | ||
# - name: Task | ||
# publisher: Task | ||
# short_description: A task runner / simpler Make alternative written in Go | ||
# description: Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make. | ||
# license: MIT | ||
# homepage: https://taskfile.dev/ | ||
# publisher_url: https://taskfile.dev/ | ||
# publisher_support_url: https://github.com/go-task/task/issues | ||
# package_identifier: Task.Task | ||
# commit_author: | ||
# name: task-bot | ||
# email: [email protected] | ||
# commit_msg_template: "chore: bump {{.PackageIdentifier}} to {{.Tag}}" | ||
# release_notes_url: https://github.com/go-task/task/releases/tag/{{.Tag}} | ||
# tags: | ||
# - build | ||
# - build-tool | ||
# - devops | ||
# - go | ||
# - make | ||
# - makefile | ||
# - runner | ||
# - task | ||
# - task-runner | ||
# - taskfile | ||
# - tool | ||
# skip_upload: true | ||
# repository: | ||
# owner: microsoft | ||
# name: winget-pkgs | ||
# pull_request: | ||
# enabled: true | ||
# base: | ||
# owner: go-task | ||
# name: winget-pkgs | ||
# branch: "bump-task-to-{{.Tag}}" | ||
|
||
dockers: | ||
- image_templates: | ||
- "ghcr.io/go-task/task:v{{.Version}}-amd64" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-amd64" | ||
use: buildx | ||
dockerfile: Dockerfile | ||
build_flag_templates: | ||
|
@@ -149,7 +149,7 @@ dockers: | |
- "--label=org.opencontainers.image.authors=Andrey Nering <[email protected]>" | ||
- "--label=org.opencontainers.image.description=Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make." | ||
- image_templates: | ||
- "ghcr.io/go-task/task:v{{.Version}}-arm64v8" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-arm64v8" | ||
use: buildx | ||
goarch: arm64 | ||
dockerfile: Dockerfile | ||
|
@@ -166,19 +166,19 @@ dockers: | |
- "--label=org.opencontainers.image.description=Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make." | ||
|
||
docker_manifests: | ||
- name_template: "ghcr.io/go-task/task:v{{.Major}}.{{.Minor}}.{{.Patch}}" | ||
- name_template: "ghcr.io/mirceanton/task-test:v{{.Major}}.{{.Minor}}.{{.Patch}}" | ||
image_templates: | ||
- "ghcr.io/go-task/task:v{{.Version}}-amd64" | ||
- "ghcr.io/go-task/task:v{{.Version}}-arm64v8" | ||
- name_template: "ghcr.io/go-task/task:v{{.Major}}.{{.Minor}}" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-amd64" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-arm64v8" | ||
- name_template: "ghcr.io/mirceanton/task-test:v{{.Major}}.{{.Minor}}" | ||
image_templates: | ||
- "ghcr.io/go-task/task:v{{.Version}}-amd64" | ||
- "ghcr.io/go-task/task:v{{.Version}}-arm64v8" | ||
- name_template: "ghcr.io/go-task/task:v{{.Major}}" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-amd64" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-arm64v8" | ||
- name_template: "ghcr.io/mirceanton/task-test:v{{.Major}}" | ||
image_templates: | ||
- "ghcr.io/go-task/task:v{{.Version}}-amd64" | ||
- "ghcr.io/go-task/task:v{{.Version}}-arm64v8" | ||
- name_template: "ghcr.io/go-task/task:latest" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-amd64" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-arm64v8" | ||
- name_template: "ghcr.io/mirceanton/task-test:latest" | ||
image_templates: | ||
- "ghcr.io/go-task/task:v{{.Version}}-amd64" | ||
- "ghcr.io/go-task/task:v{{.Version}}-arm64v8" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-amd64" | ||
- "ghcr.io/mirceanton/task-test:v{{.Version}}-arm64v8" |