From 136e0dae891f391a45eb6d630d89a4ecf68381de Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 16 May 2026 17:50:34 -0300 Subject: [PATCH] ci: fix goreleaser --- .goreleaser.yml | 4 ++-- CHANGELOG.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index e2401b6e..d6f86c70 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -89,7 +89,7 @@ brews: repository: owner: go-task 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" install: |- bin.install "task" @@ -131,7 +131,7 @@ winget: owner: go-task name: winget-pkgs 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: enabled: true draft: false diff --git a/CHANGELOG.md b/CHANGELOG.md index ac096aac..402c0944 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v3.51.0 - 2026-05-16 +## Unreleased - A significant performance boost was achieved for large Taskfiles (monorepos) by skipping templating altogether when the string is static (#2820 by @romnn).