2020-05-10 21:57:11 +02:00
|
|
|
# Install
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-06-21 04:13:49 +02:00
|
|
|
There are two GoReleaser distributions: OSS and [Pro](/pro/).
|
2021-05-27 00:08:46 +02:00
|
|
|
|
2023-01-03 03:19:17 +02:00
|
|
|
You can install the pre-compiled binary (in several ways), use Docker or compile
|
|
|
|
from source (when on OSS).
|
2019-03-25 01:10:30 +02:00
|
|
|
|
2021-09-16 19:31:57 +02:00
|
|
|
Below you can find the steps for each of them.
|
2018-11-22 21:01:25 +02:00
|
|
|
|
|
|
|
## Install the pre-compiled binary
|
|
|
|
|
2021-05-27 00:08:46 +02:00
|
|
|
### homebrew tap
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
brew install goreleaser/tap/goreleaser
|
|
|
|
```
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
brew install goreleaser/tap/goreleaser-pro
|
|
|
|
```
|
2021-05-27 00:08:46 +02:00
|
|
|
|
|
|
|
### homebrew
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
brew install goreleaser
|
|
|
|
```
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-07-12 19:49:26 +02:00
|
|
|
!!! 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.
|
|
|
|
|
2021-05-27 00:08:46 +02:00
|
|
|
### snapcraft
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
sudo snap install --classic goreleaser
|
|
|
|
```
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-05-27 00:08:46 +02:00
|
|
|
### scoop
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
|
|
|
|
scoop install goreleaser
|
|
|
|
```
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
|
|
|
|
scoop install goreleaser-pro
|
|
|
|
```
|
2021-05-27 00:08:46 +02:00
|
|
|
|
2021-06-21 04:13:49 +02:00
|
|
|
### apt
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-29 15:39:14 +02:00
|
|
|
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list
|
2021-07-09 21:11:58 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install goreleaser
|
|
|
|
```
|
2021-06-21 04:13:49 +02:00
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-29 15:39:14 +02:00
|
|
|
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list
|
2021-07-09 21:11:58 +02:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install goreleaser-pro
|
|
|
|
```
|
2021-06-21 04:13:49 +02:00
|
|
|
|
|
|
|
### yum
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
echo '[goreleaser]
|
|
|
|
name=GoReleaser
|
2021-07-29 15:39:14 +02:00
|
|
|
baseurl=https://repo.goreleaser.com/yum/
|
2021-07-09 21:11:58 +02:00
|
|
|
enabled=1
|
|
|
|
gpgcheck=0' | sudo tee /etc/yum.repos.d/goreleaser.repo
|
|
|
|
sudo yum install goreleaser
|
|
|
|
```
|
|
|
|
|
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
echo '[goreleaser]
|
|
|
|
name=GoReleaser
|
2021-07-29 15:39:14 +02:00
|
|
|
baseurl=https://repo.goreleaser.com/yum/
|
2021-07-09 21:11:58 +02:00
|
|
|
enabled=1
|
|
|
|
gpgcheck=0' | sudo tee /etc/yum.repos.d/goreleaser.repo
|
|
|
|
sudo yum install goreleaser-pro
|
|
|
|
```
|
2021-06-21 04:13:49 +02:00
|
|
|
|
2022-01-27 05:10:05 +02:00
|
|
|
### aur
|
|
|
|
|
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2022-01-27 05:10:05 +02:00
|
|
|
yay -S goreleaser-bin
|
|
|
|
```
|
|
|
|
|
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2022-01-27 05:10:05 +02:00
|
|
|
yay -S goreleaser-pro-bin
|
|
|
|
```
|
|
|
|
|
2021-05-27 00:08:46 +02:00
|
|
|
### deb, rpm and apk packages
|
|
|
|
|
2021-07-10 18:10:22 +02:00
|
|
|
=== "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
|
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-20 14:20:05 +02:00
|
|
|
go install github.com/goreleaser/goreleaser@latest
|
2021-07-09 21:11:58 +02:00
|
|
|
```
|
2021-03-23 14:46:11 +02:00
|
|
|
|
2022-04-29 13:11:04 +02:00
|
|
|
### bash script
|
|
|
|
|
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2022-04-29 13:11:04 +02:00
|
|
|
curl -sfL https://goreleaser.com/static/run | bash
|
|
|
|
```
|
|
|
|
|
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2022-04-29 13:11:04 +02:00
|
|
|
curl -sfL https://goreleaser.com/static/run | DISTRIBUTION=pro bash
|
|
|
|
```
|
|
|
|
|
2022-04-29 13:26:19 +02:00
|
|
|
=== "Additional Options"
|
|
|
|
You can also set the `VERSION` and `DISTRIBUTION` variables to specify
|
|
|
|
a version instead of using latest and `pro` or `oss` distributions,
|
|
|
|
respectively.
|
2022-04-29 13:11:04 +02:00
|
|
|
|
2022-04-29 13:26:19 +02:00
|
|
|
You can also pass flags and args to GoReleaser:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
curl -sfL https://goreleaser.com/static/run |
|
|
|
|
VERSION=__VERSION__ DISTRIBUTION=oss bash -s -- check
|
|
|
|
```
|
2022-04-29 13:11:04 +02:00
|
|
|
|
2022-04-29 13:26:19 +02:00
|
|
|
!!! tip
|
|
|
|
This script does not install anything, it just downloads, verifies and
|
|
|
|
runs GoReleaser.
|
2022-08-25 15:15:33 +02:00
|
|
|
Its purpose is to be used within scripts and CIs.
|
2022-04-29 13:11:04 +02:00
|
|
|
|
2021-05-27 00:08:46 +02:00
|
|
|
### manually
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
2021-07-09 21:13:50 +02:00
|
|
|
Download the pre-compiled binaries from the [OSS releases page][releases] and copy them to the desired location.
|
2021-07-09 21:11:58 +02:00
|
|
|
|
|
|
|
=== "Pro"
|
2021-07-09 21:13:50 +02:00
|
|
|
Download the pre-compiled binaries from the [Pro releases page][pro-releases] and copy them to the desired location.
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2022-08-25 15:15:33 +02:00
|
|
|
### nightly
|
|
|
|
|
|
|
|
Nightly build are pre-releases of the current code into the main branch.
|
|
|
|
Use it for testing out new features only.
|
|
|
|
|
|
|
|
#### manually
|
|
|
|
|
|
|
|
=== "Pro"
|
|
|
|
Download the pre-compiled binaries from the [nightly release][nighly-pro-releases] and copy them to the desired location.
|
|
|
|
|
2022-10-12 06:12:38 +02:00
|
|
|
### bash script
|
|
|
|
|
|
|
|
=== "Pro"
|
|
|
|
```bash
|
|
|
|
curl -sfL https://goreleaser.com/static/run |
|
2023-01-31 04:06:46 +02:00
|
|
|
VERSION=nightly DISTRIBUTION=pro bash -s -- release --clean
|
2022-10-12 06:12:38 +02:00
|
|
|
```
|
|
|
|
|
2022-08-25 15:15:33 +02:00
|
|
|
#### docker
|
|
|
|
|
|
|
|
=== "Pro"
|
|
|
|
Docker images are also available, look for tags with a `-nightly` suffix.
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
2021-12-16 18:43:11 +02:00
|
|
|
## Verifying the artifacts
|
2021-08-25 03:31:02 +02:00
|
|
|
|
2021-12-16 18:43:11 +02:00
|
|
|
### binaries
|
2021-08-25 03:31:02 +02:00
|
|
|
|
2022-08-25 15:15:33 +02:00
|
|
|
All artifacts are checksummed, and the checksum file is signed with [cosign][].
|
2021-08-25 03:31:02 +02:00
|
|
|
|
|
|
|
=== "OSS"
|
2021-12-16 18:43:11 +02:00
|
|
|
1. Download the files you want, and the `checksums.txt`, `checksum.txt.pem` and `checksums.txt.sig` files from the [releases][releases] page:
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
|
|
|
wget 'https://github.com/goreleaser/goreleaser/releases/download/__VERSION__/checksums.txt'
|
2021-11-22 14:39:16 +02:00
|
|
|
```
|
2021-08-25 03:31:02 +02:00
|
|
|
1. Verify the signature:
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2023-03-02 20:11:43 +02:00
|
|
|
cosign verify-blob \
|
2023-04-06 19:16:16 +02:00
|
|
|
--certificate-identity 'https://github.com/goreleaser/goreleaser/.github/workflows/release.yml@refs/tags/__VERSION__' \
|
|
|
|
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
|
|
|
|
--cert 'https://github.com/goreleaser/goreleaser/releases/download/__VERSION__/checksums.txt.pem' \
|
|
|
|
--signature 'https://github.com/goreleaser/goreleaser/releases/download/__VERSION__/checksums.txt.sig' \
|
|
|
|
./checksums.txt
|
2021-08-25 03:31:02 +02:00
|
|
|
```
|
|
|
|
1. If the signature is valid, you can then verify the SHA256 sums match with the downloaded binary:
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-09-03 04:58:18 +02:00
|
|
|
sha256sum --ignore-missing -c checksums.txt
|
2021-08-25 03:31:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
=== "Pro"
|
2021-12-16 18:43:11 +02:00
|
|
|
1. Download the files you want, and the `checksums.txt`, `checksum.txt.pem` and `checksums.txt.sig` files from the [releases][pro-releases] page:
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
|
|
|
wget 'https://github.com/goreleaser/goreleaser-pro/releases/download/__VERSION__-pro/checksums.txt'
|
2021-11-22 14:39:16 +02:00
|
|
|
```
|
2021-08-25 03:31:02 +02:00
|
|
|
1. Verify the signature:
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2023-03-02 20:11:43 +02:00
|
|
|
cosign verify-blob \
|
2023-04-06 19:16:16 +02:00
|
|
|
--certificate-identity 'https://github.com/goreleaser/goreleaser-pro-internal/.github/workflows/release-pro.yml@refs/tags/__VERSION__-pro' \
|
|
|
|
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
|
|
|
|
--cert 'https://github.com/goreleaser/goreleaser-pro/releases/download/__VERSION__-pro/checksums.txt.pem' \
|
|
|
|
--signature 'https://github.com/goreleaser/goreleaser-pro/releases/download/__VERSION__-pro/checksums.txt.sig' \
|
|
|
|
./checksums.txt
|
2021-08-25 03:31:02 +02:00
|
|
|
```
|
2021-09-03 05:04:26 +02:00
|
|
|
1. If the signature is valid, you can then verify the SHA256 sums match with the downloaded binary:
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-09-03 04:58:18 +02:00
|
|
|
sha256sum --ignore-missing -c checksums.txt
|
2021-08-25 03:31:02 +02:00
|
|
|
```
|
|
|
|
|
2021-12-16 18:43:11 +02:00
|
|
|
### docker images
|
2021-08-25 03:31:02 +02:00
|
|
|
|
2021-12-16 18:43:11 +02:00
|
|
|
Our Docker images are signed with [cosign][].
|
2021-08-25 03:31:02 +02:00
|
|
|
|
2021-12-16 18:43:11 +02:00
|
|
|
Verify the signatures:
|
2021-08-25 03:31:02 +02:00
|
|
|
|
|
|
|
=== "OSS"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
|
|
|
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
|
2021-08-25 03:31:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
=== "Pro"
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
|
|
|
cosign verify \
|
|
|
|
--certificate-identity 'https://github.com/goreleaser/goreleaser-pro-internal/.github/workflows/release-pro.yml@refs/tags/__VERSION__-pro' \
|
|
|
|
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
|
|
|
|
goreleaser/goreleaser-pro
|
2021-08-25 03:31:02 +02:00
|
|
|
```
|
|
|
|
|
2021-12-16 18:43:11 +02:00
|
|
|
!!! info
|
|
|
|
The `.pem` and `.sig` files are the image `name:tag`, replacing `/` and `:` with `-`.
|
|
|
|
|
2018-11-22 21:01:25 +02:00
|
|
|
## Running with Docker
|
|
|
|
|
2021-05-27 00:08:46 +02:00
|
|
|
You can also use it within a Docker container.
|
2021-09-16 19:31:57 +02:00
|
|
|
To do that, you'll need to execute something more-or-less like the examples below.
|
2021-05-27 00:08:46 +02:00
|
|
|
|
2021-07-09 21:11:58 +02:00
|
|
|
=== "OSS"
|
|
|
|
Registries:
|
|
|
|
|
|
|
|
- [`goreleaser/goreleaser`](https://hub.docker.com/r/goreleaser/goreleaser)
|
2021-10-17 20:13:52 +02:00
|
|
|
- [`ghcr.io/goreleaser/goreleaser`](https://github.com/goreleaser/goreleaser/pkgs/container/goreleaser)
|
2021-07-09 21:11:58 +02:00
|
|
|
|
|
|
|
Example usage:
|
|
|
|
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
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)
|
2021-10-17 20:13:52 +02:00
|
|
|
- [`ghcr.io/goreleaser/goreleaser-pro`](https://github.com/goreleaser/goreleaser/pkgs/container/goreleaser-pro)
|
2021-07-09 21:11:58 +02:00
|
|
|
|
|
|
|
Example usage:
|
|
|
|
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-07-09 21:11:58 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
2020-05-10 21:57:11 +02:00
|
|
|
!!! info
|
2022-08-25 15:15:33 +02:00
|
|
|
Now, the provided docker image does not support
|
2020-05-10 21:57:11 +02:00
|
|
|
the generation of snapcraft packages.
|
2019-03-25 01:10:30 +02:00
|
|
|
|
2018-11-22 21:01:25 +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
|
2018-12-10 17:45:01 +02:00
|
|
|
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.
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2021-11-12 22:23:32 +02:00
|
|
|
[dockerfile]: https://github.com/goreleaser/goreleaser/blob/main/Dockerfile
|
2018-11-22 21:01:25 +02:00
|
|
|
[releases]: https://github.com/goreleaser/goreleaser/releases
|
2021-05-27 00:08:46 +02:00
|
|
|
[pro-releases]: https://github.com/goreleaser/goreleaser-pro/releases
|
2022-08-25 15:15:33 +02:00
|
|
|
[nightly-pro-releases]: https://github.com/goreleaser/goreleaser-pro/releases/nightly
|
2021-08-25 03:31:02 +02:00
|
|
|
[cosign]: https://github.com/sigstore/cosign
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2023-01-03 03:19:17 +02:00
|
|
|
## Packaging status
|
|
|
|
|
|
|
|
[![Packaging status](https://repology.org/badge/vertical-allrepos/goreleaser.svg)](https://repology.org/project/goreleaser/versions)
|
|
|
|
|
2020-05-10 23:59:21 +02:00
|
|
|
## Compiling from source
|
2018-11-22 21:01:25 +02:00
|
|
|
|
2019-05-14 16:22:56 +02:00
|
|
|
Here you have two options:
|
|
|
|
|
2020-05-11 14:35:58 +02:00
|
|
|
If you want to contribute to the project, please follow the
|
2021-06-21 04:13:49 +02:00
|
|
|
steps on our [contributing guide](/contributing/).
|
2019-05-14 16:22:56 +02:00
|
|
|
|
2020-05-11 14:35:58 +02:00
|
|
|
If you just want to build from source for whatever reason, follow these steps:
|
2019-05-14 16:22:56 +02:00
|
|
|
|
2021-03-23 14:46:11 +02:00
|
|
|
**clone:**
|
2019-05-14 16:22:56 +02:00
|
|
|
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2020-08-14 23:13:02 +02:00
|
|
|
git clone https://github.com/goreleaser/goreleaser
|
|
|
|
cd goreleaser
|
2020-05-11 14:35:58 +02:00
|
|
|
```
|
|
|
|
|
2021-03-23 14:46:11 +02:00
|
|
|
**get the dependencies:**
|
2020-05-11 14:35:58 +02:00
|
|
|
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2021-03-23 14:46:11 +02:00
|
|
|
go mod tidy
|
2020-05-11 14:35:58 +02:00
|
|
|
```
|
|
|
|
|
2021-03-23 14:46:11 +02:00
|
|
|
**build:**
|
2020-05-11 14:35:58 +02:00
|
|
|
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2020-08-14 23:13:02 +02:00
|
|
|
go build -o goreleaser .
|
2020-05-11 14:35:58 +02:00
|
|
|
```
|
|
|
|
|
2021-03-23 14:46:11 +02:00
|
|
|
**verify it works:**
|
2019-05-14 16:22:56 +02:00
|
|
|
|
2023-04-06 19:16:16 +02:00
|
|
|
```bash
|
2020-08-14 23:13:02 +02:00
|
|
|
./goreleaser --version
|
2019-05-14 16:22:56 +02:00
|
|
|
```
|