1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/www/docs/install.md

291 lines
7.3 KiB
Markdown
Raw Normal View History

# Install
There are two GoReleaser distributions: OSS and [Pro](/pro/).
2021-05-27 00:08:46 +02:00
You can install the pre-compiled binary (in several different ways), use Docker or compile from source (when on OSS).
2019-03-25 01:10:30 +02:00
Below you can find the steps for each of them.
## Install the pre-compiled binary
2021-05-27 00:08:46 +02:00
### homebrew tap
=== "OSS"
```sh
brew install goreleaser/tap/goreleaser
```
=== "Pro"
```sh
brew install goreleaser/tap/goreleaser-pro
```
2021-05-27 00:08:46 +02:00
### homebrew
=== "OSS"
```sh
brew install goreleaser
```
!!! info
The [formula in homebrew-core](https://github.com/Homebrew/homebrew-core/blob/master/Formula/goreleaser.rb) might be slightly outdated.
Use our homebrew tap to always get the latest updates.
### gofish
=== "OSS"
```sh
gofish rig add https://github.com/goreleaser/fish-food
gofish install github.com/goreleaser/fish-food/goreleaser
```
=== "Pro"
```sh
gofish rig add https://github.com/goreleaser/fish-food
gofish install github.com/goreleaser/fish-food/goreleaser-pro
```
2021-05-27 00:08:46 +02:00
### snapcraft
=== "OSS"
```sh
sudo snap install --classic goreleaser
```
2021-05-27 00:08:46 +02:00
### scoop
=== "OSS"
```sh
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
scoop install goreleaser
```
=== "Pro"
```sh
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
scoop install goreleaser-pro
```
2021-05-27 00:08:46 +02:00
### apt
=== "OSS"
```sh
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"
```sh
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
```
### yum
=== "OSS"
```sh
echo '[goreleaser]
name=GoReleaser
baseurl=https://repo.goreleaser.com/yum/
enabled=1
gpgcheck=0' | sudo tee /etc/yum.repos.d/goreleaser.repo
sudo yum install goreleaser
```
=== "Pro"
```sh
echo '[goreleaser]
name=GoReleaser
baseurl=https://repo.goreleaser.com/yum/
enabled=1
gpgcheck=0' | sudo tee /etc/yum.repos.d/goreleaser.repo
sudo yum install goreleaser-pro
```
2021-05-27 00:08:46 +02:00
### deb, rpm and apk packages
=== "OSS"
Download the `.deb`, `.rpm` or `.apk` packages from the [OSS releases page][releases] and install them with the appropriate tools.
=== "Pro"
Download the `.deb`, `.rpm` or `.apk` packages from the [Pro releases page][pro-releases] and install them with the appropriate tools.
2021-05-27 00:08:46 +02:00
### go install
=== "OSS"
```sh
go install github.com/goreleaser/goreleaser@latest
```
2021-05-27 00:08:46 +02:00
### manually
=== "OSS"
Download the pre-compiled binaries from the [OSS releases page][releases] and copy them to the desired location.
=== "Pro"
Download the pre-compiled binaries from the [Pro releases page][pro-releases] and copy them to the desired location.
## Verifying the binaries
All artifacts are checksummed and the checksum file is signed with [cosign][].
You can verify it using [our public key](https://goreleaser.com/static/goreleaser.pub).
=== "OSS"
1. Download the files you want, the `checksums.txt` and `checksums.txt.sig` files from the [releases][releases] page.
1. Verify the signature:
```sh
cosign verify-blob \
-key https://goreleaser.com/static/goreleaser.pub \
-signature checksums.txt.sig \
checksums.txt
```
1. If the signature is valid, you can then verify the SHA256 sums match with the downloaded binary:
```sh
sha256sum --ignore-missing -c checksums.txt
```
=== "Pro"
1. Download the files you want, the `checksums.txt` and `checksums.txt.sig` files from the [releases][pro-releases] page.
1. Verify the signature:
```sh
cosign verify-blob \
-key https://goreleaser.com/static/goreleaser.pub \
-signature checksums.txt.sig \
checksums.txt
```
1. If the signature is valid, you can then verify the SHA256 sums match with the downloaded binary:
```sh
sha256sum --ignore-missing -c checksums.txt
```
## Verifying docker images
Our Docker image is signed with [cosign][].
You can verify it using [our public key](https://goreleaser.com/static/goreleaser.pub).
=== "OSS"
Verify the signatures:
```sh
cosign verify \
-key https://goreleaser.com/static/goreleaser.pub \
goreleaser/goreleaser
cosign verify \
-key https://goreleaser.com/static/goreleaser.pub \
ghcr.io/goreleaser/goreleaser
```
=== "Pro"
Verify the signatures:
```sh
cosign verify \
-key https://goreleaser.com/static/goreleaser.pub \
goreleaser/goreleaser-pro
cosign verify \
-key https://goreleaser.com/static/goreleaser.pub \
ghcr.io/goreleaser/goreleaser-pro
```
## Running with Docker
2021-05-27 00:08:46 +02:00
You can also use it within a Docker container.
To do that, you'll need to execute something more-or-less like the examples below.
2021-05-27 00:08:46 +02:00
=== "OSS"
Registries:
- [`goreleaser/goreleaser`](https://hub.docker.com/r/goreleaser/goreleaser)
- [`ghcr.io/goreleaser/goreleaser`](https://github.com/goreleaser/goreleaser/pkgs/container/goreleaser)
Example usage:
```sh
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
```
=== "Pro"
Registries:
- [`goreleaser/goreleaser-pro`](https://hub.docker.com/r/goreleaser/goreleaser-pro)
- [`ghcr.io/goreleaser/goreleaser-pro`](https://github.com/goreleaser/goreleaser/pkgs/container/goreleaser-pro)
Example usage:
```sh
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
```
2021-05-27 00:08:46 +02:00
!!! info
Currently, the provided docker image does not support
the generation of snapcraft packages.
2019-03-25 01:10:30 +02:00
Note that the image will almost always have the last stable Go version.
2019-03-25 01:10:30 +02:00
The `DOCKER_REGISTRY` environment variable can be left empty when you are
releasing to the public docker registry.
2019-03-25 01:10:30 +02:00
If you need more things, you are encouraged to keep your own image. You can
always use GoReleaser's [own Dockerfile][dockerfile] as an example though
and iterate from that.
[dockerfile]: https://github.com/goreleaser/goreleaser/blob/master/Dockerfile
[releases]: https://github.com/goreleaser/goreleaser/releases
2021-05-27 00:08:46 +02:00
[pro-releases]: https://github.com/goreleaser/goreleaser-pro/releases
[cosign]: https://github.com/sigstore/cosign
## Compiling from source
Here you have two options:
If you want to contribute to the project, please follow the
steps on our [contributing guide](/contributing/).
If you just want to build from source for whatever reason, follow these steps:
**clone:**
```sh
git clone https://github.com/goreleaser/goreleaser
cd goreleaser
```
**get the dependencies:**
```sh
go mod tidy
```
**build:**
```sh
go build -o goreleaser .
```
**verify it works:**
```sh
./goreleaser --version
```