From d580a488d9ee42d5c41b6e7a8e7b852fdd3e88c6 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Tue, 24 Aug 2021 22:34:17 -0300 Subject: [PATCH] docs: fix paths Signed-off-by: Carlos Alexandro Becker --- www/docs/install.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/www/docs/install.md b/www/docs/install.md index bbf3834577e..063037b2768 100644 --- a/www/docs/install.md +++ b/www/docs/install.md @@ -129,13 +129,13 @@ Bellow you can find the steps for each of them. All artifacts are checksummed and the checksum file is signed with [cosign][]. -You can verify it using [our public key](https://goreleaser.com/goreleaser.pub). +You can verify it using [our public key](https://goreleaser.com/static/goreleaser.pub). === "OSS" 1. Download the files you want, the `goreleaser_checksums.txt` and `goreleaser_checksums.txt.sig` files from the [releases][releases] page. 1. Get our public key: ```sh - wget https://goreleaser.com/goreleaser.pub + wget https://goreleaser.com/static/goreleaser.pub ``` 1. Verify the signature: ```sh @@ -146,14 +146,14 @@ You can verify it using [our public key](https://goreleaser.com/goreleaser.pub). ``` 1. If the signature is valid, you can then verify the SHA256 sums match with the downloaded binary: ```sh - sha256sum --ignore-missing -c goreleaser-pro_checksums.txt + sha256sum --ignore-missing -c goreleaser_checksums.txt ``` === "Pro" 1. Download the files you want, the `goreleaser-pro_checksums.txt` and `goreleaser-pro_checksums.txt.sig` files from the [releases][pro-releases] page. 1. Get our public key: ```sh - wget https://goreleaser.com/goreleaser.pub + wget https://goreleaser.com/static/goreleaser.pub ``` 1. Verify the signature: ```sh @@ -171,18 +171,18 @@ You can verify it using [our public key](https://goreleaser.com/goreleaser.pub). Our Docker image is signed with [cosign][]. -You can verify it using [our public key](https://goreleaser.com/goreleaser.pub). +You can verify it using [our public key](https://goreleaser.com/static/goreleaser.pub). === "OSS" ```sh - wget https://goreleaser.com/goreleaser.pub + wget https://goreleaser.com/static/goreleaser.pub cosign verify -key goreleaser.pub goreleaser/goreleaser cosign verify -key goreleaser.pub ghcr.io/goreleaser/goreleaser ``` === "Pro" ```sh - wget https://goreleaser.com/goreleaser.pub + 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 ```