From 462e61665b2963e6c36fb34eb915b653cdb44e71 Mon Sep 17 00:00:00 2001 From: Eugene Blikh Date: Tue, 26 May 2026 00:22:10 +0300 Subject: [PATCH] publish.yml: mkdir ~/.local/bin before extracting goreleaser MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Caught by job 143 install_goreleaser step — install_go creates ~/.local but not ~/.local/bin, so the tar -C target didn't exist. --- .builds/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.builds/publish.yml b/.builds/publish.yml index 5128cf6b614e450ddb2eb9ef504f441dcd1e44b1..ce3a3b4bad440ba134b903c92473919212f0dbff 100644 --- a/.builds/publish.yml +++ b/.builds/publish.yml @@ -44,6 +44,7 @@ tasks: # Pinned binary release, not `go install` — goreleaser's release # binaries are stripped + statically linked and ~10x smaller than # a from-source build. + mkdir -p ~/.local/bin curl -sSL "https://github.com/goreleaser/goreleaser/releases/download/${GORELEASER_VERSION}/goreleaser_Linux_x86_64.tar.gz" \ | tar -xz -C ~/.local/bin goreleaser goreleaser --version