www/content/getting-started/install.md
There are two GoReleaser distributions: OSS and Pro, each have a multitude of installation options.
You can see the instructions for each of them below.
{{< tabs >}} {{< tab "OSS" >}}
brew install --cask goreleaser/tap/goreleaser
{{< /tab >}} {{< tab "Pro" >}}
brew install --cask goreleaser/tap/goreleaser-pro
{{< /tab >}} {{< /tabs >}}
{{< badge content="Community Owned" icon="external-link" >}}
{{< tabs >}} {{< tab "OSS" >}}
brew install goreleaser
[!WARNING] The formula in homebrew-core might be slightly outdated. Use our homebrew tap to always get the latest updates.
{{< /tab >}} {{< tab "Pro" >}}
Not available. {{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
npm i -g @goreleaser/goreleaser
{{< /tab >}} {{< tab "Pro" >}}
npm i -g @goreleaser/goreleaser-pro
{{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
sudo snap install --classic goreleaser
{{< /tab >}} {{< tab "Pro" >}}
Not available. {{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
scoop install goreleaser
{{< /tab >}} {{< tab "Pro" >}}
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
scoop install goreleaser-pro
{{< /tab >}} {{< /tabs >}}
{{< badge content="Community Owned" icon="external-link" >}}
{{< tabs >}} {{< tab "OSS" >}}
choco install goreleaser
{{< /tab >}} {{< tab "Pro" >}} Not available. {{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
winget install goreleaser
{{< /tab >}} {{< tab "Pro" >}}
winget install goreleaser-pro
{{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list
sudo apt update
sudo apt install goreleaser
{{< /tab >}} {{< tab "Pro" >}}
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list
sudo apt update
sudo apt install goreleaser-pro
{{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
echo '[goreleaser]
name=GoReleaser
baseurl=https://repo.goreleaser.com/yum/
enabled=1
gpgcheck=0
exclude=goreleaser-pro' | sudo tee /etc/yum.repos.d/goreleaser.repo
sudo yum install goreleaser
{{< /tab >}} {{< tab "Pro" >}}
echo '[goreleaser]
name=GoReleaser
baseurl=https://repo.goreleaser.com/yum/
enabled=1
gpgcheck=0
exclude=goreleaser' | sudo tee /etc/yum.repos.d/goreleaser.repo
sudo yum install goreleaser-pro
{{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
yay -S goreleaser-bin
{{< /tab >}} {{< tab "Pro" >}}
yay -S goreleaser-pro-bin
{{< /tab >}} {{< /tabs >}}
{{< badge content="Community Owned" icon="external-link" >}}
{{< tabs >}} {{< tab "OSS" >}}
nix-shell -p goreleaser
[!WARNING] The package in nixpkgs might be slightly outdated, as it is not updated automatically. Use our NUR to always get the latest updates.
{{< /tab >}} {{< tab "Pro" >}}
Not available. {{< /tab >}} {{< /tabs >}}
First, you'll need to add our NUR to your nix configuration. You can follow the guides here.
Once you do that, you can install the packages.
{{< tabs >}} {{< tab "OSS" >}}
{ pkgs, lib, ... }: {
home.packages = with pkgs; [
nur.repos.goreleaser.goreleaser
];
}
{{< /tab >}} {{< tab "Pro" >}}
{ pkgs, lib, ... }: {
home.packages = with pkgs; [
nur.repos.goreleaser.goreleaser-pro
];
}
{{< /tab >}} {{< /tabs >}}
{{< tabs >}} {{< tab "OSS" >}}
Registries:
Example usage:
docker run --rm --privileged \
-v $PWD:/go/src/github.com/user/repo \
-v /var/run/docker.sock:/var/run/docker.sock \
-w /go/src/github.com/user/repo \
-e GITHUB_TOKEN \
-e DOCKER_USERNAME \
-e DOCKER_PASSWORD \
-e DOCKER_REGISTRY \
goreleaser/goreleaser release
{{< /tab >}} {{< tab "Pro" >}}
Registries:
Example usage:
docker run --rm --privileged \
-v $PWD:/go/src/github.com/user/repo \
-v /var/run/docker.sock:/var/run/docker.sock \
-w /go/src/github.com/user/repo \
-e GITHUB_TOKEN \
-e DOCKER_USERNAME \
-e DOCKER_PASSWORD \
-e DOCKER_REGISTRY \
-e GORELEASER_KEY \
goreleaser/goreleaser-pro release
{{< /tab >}} {{< /tabs >}}
[!WARNING] The provided docker image does not support the Snapcraft feature.
The DOCKER_REGISTRY environment variable can be left empty when you are
releasing to the public docker registry.
If you need more things, you are encouraged to keep your own image. You can always use GoReleaser's own Dockerfile as an example though and iterate from that.
[!NOTE] There are also
:nightlytags available with the latest nightly builds.
{{< tabs >}} {{< tab "OSS" >}}
Download the .deb, .rpm, or .apk packages from the releases page and
install them with the appropriate tools.
{{% g_button href="https://github.com/goreleaser/goreleaser/releases/tag/__VERSION__" label="Download" icon="github" primary="true" %}}
{{< /tab >}} {{< tab "Pro" >}}
Download the .deb, .rpm, or .apk packages from the releases page and
install them with the appropriate tools.
{{% g_button href="https://github.com/goreleaser/goreleaser-pro/releases/tag/__VERSION__" label="Download" icon="github" primary="true" %}}
{{< /tab >}} {{< /tabs >}}
To install, after downloading the files, run:
dpkg -i goreleaser*.deb
rpm -ivh goreleaser*.rpm
apk add --allow-untrusted goreleaser*.apk
go install{{< tabs >}} {{< tab "OSS" >}}
go install github.com/goreleaser/goreleaser/v2@latest
Requires Go 1.26. {{< /tab >}} {{< tab "Pro" >}}
Not available. {{< /tab >}} {{< /tabs >}}
This script does not install anything, it just downloads, verifies and runs GoReleaser. Its purpose is to be used within scripts and CIs.
{{< tabs >}} {{< tab "OSS" >}}
curl -sfL https://goreleaser.com/static/run | bash VERSION=__VERSION__ -s -- check
{{< /tab >}} {{< tab "Pro" >}}
curl -sfL https://goreleaser.com/static/run | DISTRIBUTION=pro VERSION=__VERSION__ bash -s -- check
{{< /tab >}} {{< /tabs >}}
[!NOTE] The
VERSIONenvironment variable can be omitted to get the latest stable version, or you can set it tonightlyto get the last nightly build.
{{< tabs >}} {{< tab "OSS" >}}
Download the pre-compiled binaries from the releases page and copy them to the desired location:
{{% g_button href="https://github.com/goreleaser/goreleaser/releases/tag/__VERSION__" label="Download" icon="github" primary="true" %}}
{{< /tab >}} {{< tab "Pro" >}}
Download the pre-compiled binaries from the releases page and copy them to the desired location:
{{% g_button href="https://github.com/goreleaser/goreleaser-pro/releases/tag/__VERSION__" label="Download" icon="github" primary="true" %}}
{{< /tab >}} {{< /tabs >}}
All artifacts are checksummed, and the checksum file is signed with cosign.
{{< tabs >}} {{< tab "OSS" >}}
checksums.txt, checksum.txt.sigstore.json files from the
releases page:wget 'https://github.com/goreleaser/goreleaser/releases/download/__VERSION__/checksums.txt'
wget 'https://github.com/goreleaser/goreleaser/releases/download/__VERSION__/checksums.txt.sigstore.json'
cosign verify-blob \
--certificate-identity 'https://github.com/goreleaser/goreleaser/.github/workflows/release.yml@refs/tags/__VERSION__' \
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
--bundle checksums.txt.sigstore.json \
./checksums.txt
sha256sum --ignore-missing -c checksums.txt
{{< /tab >}} {{< tab "Pro" >}}
checksums.txt, checksum.txt.sigstore.json files from the
releases page:wget 'https://github.com/goreleaser/goreleaser-pro/releases/download/__VERSION__/checksums.txt'
wget 'https://github.com/goreleaser/goreleaser-pro/releases/download/__VERSION__/checksums.txt.sigstore.json'
cosign verify-blob \
--certificate-identity 'https://github.com/goreleaser/goreleaser-pro-internal/.github/workflows/release-pro.yml@refs/tags/__VERSION__' \
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
--bundle checksums.txt.sigstore.json \
./checksums.txt
sha256sum --ignore-missing -c checksums.txt
{{< /tab >}} {{< /tabs >}}
You can also verify the attestations:
{{< tabs >}} {{< tab "OSS" >}}
gh attestation verify --owner goreleaser *.tar.gz
# PS: can be any file from the release
{{< /tab >}} {{< tab "Pro" >}}
GitHub does not yet allow cross-repository attestations (e.g. building a private repo and publishing the attestations in a public one), so this isn't available yet, unfortunately. {{< /tab >}} {{< /tabs >}}
Our Docker images are signed with cosign.
Verify the signatures:
{{< tabs >}} {{< tab "OSS" >}}
cosign verify \
--certificate-identity 'https://github.com/goreleaser/goreleaser/.github/workflows/release.yml@refs/tags/__VERSION__' \
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
goreleaser/goreleaser
{{< /tab >}} {{< tab "Pro" >}}
cosign verify \
--certificate-identity 'https://github.com/goreleaser/goreleaser-pro-internal/.github/workflows/release-pro.yml@refs/tags/__VERSION__' \
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
goreleaser/goreleaser-pro
{{< /tab >}} {{< /tabs >}}
Nightly build are pre-releases of the current code into the main branch. Use it for testing out new features only.
{{< tabs >}} {{< tab "OSS" >}}
Download the pre-compiled binaries from the nightly release and copy them to the desired location. {{< /tab >}} {{< tab "Pro" >}}
Download the pre-compiled binaries from the nightly release and copy them to the desired location.
{{< /tab >}} {{< /tabs >}}
Docker images are also available, look for tags with a -nightly
suffix for the last nightly of a specific release, or the :nightly tag,
which is always the latest nightly build available.
You may also use the Bash Script method by setting the VERSION
environment variable to nightly.
Install options with the "Community Owned" badge are maintained by the community and might not always be up to date.