# goreleaser を Homebrew, MacPorts, Nix, pacman, zypper, scoop, winget でインストール

goreleaser のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:goreleaser
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install goreleaser
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install goreleaser
```

  証拠: MacPorts ports tree: devel/goreleaser/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- Nix (92%):

```sh
nix profile install nixpkgs#goreleaser
```

  証拠: nixpkgs package indexes: pkgs/by-name/go/goreleaser/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S goreleaser
```

  証拠: Arch Linux sync databases: goreleaser from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install goreleaser
```

  証拠: openSUSE Tumbleweed package metadata: goreleaser from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Scoop (92%):

```sh
scoop install main/goreleaser
```

  証拠: Scoop official bucket manifest trees: bucket/goreleaser.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id goreleaser.goreleaser -e
```

  証拠: Windows Package Manager source index: goreleaser.goreleaser from https://cdn.winget.microsoft.com/cache/source.msix

## パッケージ情報

- **パッケージキー:** brew:goreleaser
- **パッケージマネージャ:** Homebrew
- **バージョン:** 2.17.1
- **ソース概要:** Deliver Go binaries as fast and easily as possible
- **ホームページ:** <https://goreleaser.com/>
- **リポジトリ:** <https://github.com/goreleaser/goreleaser>
- **最終更新:** 2026-07-29T16:05:04+02:00
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- goreleaser (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 2.17.1
## プロジェクトの歴史と使われ方

GoReleaser is a release automation tool that turns tagged source code into cross-platform artifacts, release notes, package-manager updates, container images, checksums, signatures, and CI-driven publishing workflows.

### プロジェクトの歴史

The GitHub repository was created on December 21, 2016, and the project's own anniversary post identifies that date as the first-commit milestone. GoReleaser spent nearly five years in a v0 release stream before the v1.0.0 announcement, where the maintainer described 467 releases and 3299 commits before stabilizing the v1 line.

The project grew from a Go binary release helper into a broader release-engineering system. Official documentation describes a configuration-driven workflow, CI integration from the first commit, generated changelogs, SCM releases, archives, checksums, package-manager publishing, container images, and supply-chain features. By v2, the project framed the major release mainly as cleanup of deprecated options after the v1.26 series.

### 採用の歴史

GoReleaser became closely associated with Go CLI distribution because it solved the recurring package-maintainer chore of producing binaries for many operating systems and publishing them to GitHub Releases, Homebrew taps, Scoop, Docker registries, and other downstream channels. Its README advertises local and CI installation paths, and the Homebrew formula records distribution through Homebrew, MacPorts, Nix, pacman, Scoop, winget, and zypper.

The GoReleaser project also developed an ecosystem around documentation, a GitHub Action, sponsorship, Pro features, examples, and related tools such as nfpm. Later announcements expanded the supported build story beyond Go, including Rust, Zig, TypeScript, Python, Bun, and Deno-oriented release workflows.

### 使われ方

A typical project keeps a .goreleaser.yaml file in the repository, runs goreleaser init or hand-writes the configuration, validates it with goreleaser check, and lets a CI job run GoReleaser on a release tag. The tool then builds artifacts, archives them, generates changelogs, and publishes them according to the configured release, package, and registry sections.

GoReleaser matters in CI because it encodes release policy in source control. Maintainers can review a single YAML file for binary matrix, archive naming, checksums, signing, Homebrew or Scoop publication, Docker images, and release-note behavior instead of keeping bespoke shell scripts in every repository.

### パッケージ好きにとっての重要性

Package nerds care about GoReleaser because it is both a tool and a package-production pattern. It popularized a repeatable path from Git tags to bottled binaries, generated formulas, checksums, SBOM/provenance-related outputs, and package-manager pull updates, reducing the hand-maintained release scripts that often bit-rot in CLI projects.

Its configuration precedence list and schema support are also packaging-significant: editors, CI, and downstream automation can reason about a stable release manifest rather than ad hoc release instructions.

### タイムライン

- 2016-12-21: Repository created and first-commit anniversary date
- 2021-12-03: v1.0.0 announced after 467 releases and 3299 commits
- 2021-12-21: v1.2 marked five years since the first commit
- 2024-06-04: GoReleaser v2 announced
- 2024-12-15: v2.5 announcement highlighted multi-language support and the eighth anniversary
- 2025-04-29: v2.9 announcement introduced Python builds through Poetry and uv

### Related projects

- goreleaser-action runs GoReleaser from GitHub Actions workflows.
- nfpm is a related packaging tool used in the GoReleaser ecosystem.
- Homebrew, Scoop, winget, Docker registries, GitHub Releases, GitLab, and Gitea are common publication targets.
- Cosign and SLSA-related workflows appear in GoReleaser's supply-chain documentation and blog history.

### ソース

- <https://github.com/goreleaser/goreleaser>
- <https://goreleaser.com/blog/goreleaser-v1.2/>
- <https://goreleaser.com/blog/goreleaser-v1/>
- <https://goreleaser.com/blog/goreleaser-v2.5/>
- <https://goreleaser.com/blog/goreleaser-v2.9/>
- <https://goreleaser.com/blog/goreleaser-v2/>
- <https://goreleaser.com/customization/>
- <https://goreleaser.com/customization/ci/>
- <https://goreleaser.com/customization/publish/scm/>


## セキュリティノート

narrow executable package without higher-risk signals.

- **Geiger リスク:** グリーン / 低
- narrow executable package without higher-risk signals


## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: .config/goreleaser.yml, .config/goreleaser.yaml, .goreleaser.yml, .goreleaser.yaml, goreleaser.yml, goreleaser.yaml
## 他のパッケージマネージャ記録

- Nix - goreleaser: normalized package name match | nixpkgs package indexes: pkgs/by-name/go/goreleaser/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- pacman - goreleaser - 2.14.0-2: normalized package name match | Arch Linux sync databases: goreleaser from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Deliver Go binaries as fast and easily as possible | https://github.com/goreleaser/goreleaser
- zypper - goreleaser - 2.17.1-1.1: normalized package name match | openSUSE Tumbleweed package metadata: goreleaser from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | CLI tool for release engineering in Go, Rust, Zig and TypeScript | https://goreleaser.com/
- MacPorts - goreleaser: normalized package name match | MacPorts ports tree: devel/goreleaser/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Scoop - main/goreleaser: normalized package name match | Scoop official bucket manifest trees: bucket/goreleaser.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
- winget - goreleaser.goreleaser: normalized package name match | Windows Package Manager source index: goreleaser.goreleaser from https://cdn.winget.microsoft.com/cache/source.msix


## Combined YAML source

View the package source record on GitHub. [combined/goreleaser.yml](https://github.com/mxcl/pkgdb/blob/main/combined/goreleaser.yml)


## ソース

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
