ci: fix goreleaser

This commit is contained in:
Andrey Nering
2026-05-16 17:50:34 -03:00
parent 41a2137044
commit 136e0dae89
2 changed files with 3 additions and 3 deletions

View File

@@ -89,7 +89,7 @@ brews:
repository: repository:
owner: go-task owner: go-task
name: homebrew-tap name: homebrew-tap
token: "{{secrets.GH_GORELEASER_TOKEN}}" # So that it runs as the task-bot user token: "{{.Env.GH_GORELEASER_TOKEN}}" # So that it runs as the task-bot user
test: system "#{bin}/task", "--help" test: system "#{bin}/task", "--help"
install: |- install: |-
bin.install "task" bin.install "task"
@@ -131,7 +131,7 @@ winget:
owner: go-task owner: go-task
name: winget-pkgs name: winget-pkgs
branch: 'task-{{.Version}}' branch: 'task-{{.Version}}'
token: "{{secrets.GH_GORELEASER_TOKEN}}" # So that it runs as the task-bot user token: "{{.Env.GH_GORELEASER_TOKEN}}" # So that it runs as the task-bot user
pull_request: pull_request:
enabled: true enabled: true
draft: false draft: false

View File

@@ -1,6 +1,6 @@
# Changelog # Changelog
## v3.51.0 - 2026-05-16 ## Unreleased
- A significant performance boost was achieved for large Taskfiles (monorepos) - A significant performance boost was achieved for large Taskfiles (monorepos)
by skipping templating altogether when the string is static (#2820 by @romnn). by skipping templating altogether when the string is static (#2820 by @romnn).