Skip to content

Commit

Permalink
docs: install
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
  • Loading branch information
caarlos0 committed Sep 3, 2021
1 parent d5d494f commit 3f650b1
Showing 1 changed file with 25 additions and 9 deletions.
34 changes: 25 additions & 9 deletions www/docs/install.md
Expand Up @@ -162,7 +162,7 @@ You can verify it using [our public key](https://goreleaser.com/static/gorelease
-signature checksums.txt.sig \
checksums.txt
```
1. If the signature is ok, you can then verify the SHA256 sums match with the downloaded binary:
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
```
Expand All @@ -174,17 +174,33 @@ Our Docker image is signed with [cosign][].
You can verify it using [our public key](https://goreleaser.com/static/goreleaser.pub).

=== "OSS"
```sh
wget https://goreleaser.com/static/goreleaser.pub
cosign verify -key goreleaser.pub goreleaser/goreleaser
cosign verify -key goreleaser.pub ghcr.io/goreleaser/goreleaser
1. Get our public key:
```sh
wget https://goreleaser.com/static/goreleaser.pub
```
1. Verify the signatures:
```sh
cosign verify \
-key goreleaser.pub \
goreleaser/goreleaser
cosign verify \
-key goreleaser.pub \
ghcr.io/goreleaser/goreleaser
```

=== "Pro"
```sh
wget https://goreleaser.com/static/goreleaser.pub
cosign verify -key goreleaser.pub goreleaser/goreleaser-pro
cosign verify -key goreleaser.pub ghcr.io/goreleaser/goreleaser-pro
1. Get our public key:
```sh
wget https://goreleaser.com/static/goreleaser.pub
```
1. Verify the signatures:
```sh
cosign verify \
-key goreleaser.pub \
goreleaser/goreleaser-pro
cosign verify \
-key goreleaser.pub \
ghcr.io/goreleaser/goreleaser-pro
```

## Running with Docker
Expand Down

1 comment on commit 3f650b1

@vercel
Copy link

@vercel vercel bot commented on 3f650b1 Sep 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.