From af3fa69d052528f22fd9f2ad8a2a4a4a40098a92 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Mon, 27 Sep 2021 11:03:07 +0200 Subject: [PATCH] docs: update release verification scripts for v0.12.1-beta --- .github/workflows/release.yaml | 2 +- docs/DOCKER.md | 2 +- docs/release.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e1b1d850c..a6a603488 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -113,7 +113,7 @@ jobs: To verify the `lnd` and `lncli` binaries inside the docker images against the signed, reproducible release binaries, there is a verification script in the image that can be called (before starting the container for example): ```shell - $ docker run --rm --entrypoint="" lightninglabs/lnd:${{ env.RELEASE_VERSION }} /verify-install.sh + $ docker run --rm --entrypoint="" lightninglabs/lnd:${{ env.RELEASE_VERSION }} /verify-install.sh ${{ env.RELEASE_VERSION }} $ OK=$? $ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done $ docker run lightninglabs/lnd [command-line options] diff --git a/docs/DOCKER.md b/docs/DOCKER.md index e0163511e..74142fcaa 100644 --- a/docs/DOCKER.md +++ b/docs/DOCKER.md @@ -61,7 +61,7 @@ script in the image that can be called (before starting the container for example): ```shell -⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.0-beta /verify-install.sh +⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.1-beta /verify-install.sh v0.12.1-beta ⛰ OK=$? ⛰ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done ⛰ docker run lightninglabs/lnd [command-line options] diff --git a/docs/release.md b/docs/release.md index d0b84efca..30e6e5727 100644 --- a/docs/release.md +++ b/docs/release.md @@ -99,7 +99,7 @@ script in the image that can be called (before starting the container for example): ```shell -⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.0-beta /verify-install.sh +⛰ docker run --rm --entrypoint="" lightninglabs/lnd:v0.12.1-beta /verify-install.sh v0.12.1-beta ⛰ OK=$? ⛰ if [ "$OK" -ne "0" ]; then echo "Verification failed!"; exit 1; done ⛰ docker run lightninglabs/lnd [command-line options]