From b1e2ea3fd1931afc6988e5e0fd08c8e0b37e77f8 Mon Sep 17 00:00:00 2001 From: EgorPopelyaev Date: Wed, 13 Dec 2023 18:49:07 +0100 Subject: [PATCH] fix polkadot container image tag --- .github/workflows/release-50_publish-docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-50_publish-docker.yml b/.github/workflows/release-50_publish-docker.yml index 567e996b8fd9..b44d9ab91ca9 100644 --- a/.github/workflows/release-50_publish-docker.yml +++ b/.github/workflows/release-50_publish-docker.yml @@ -229,7 +229,7 @@ jobs: run: | apt update apt show polkadot - version=$(apt show polkadot 2>/dev/null | grep "Version:" | awk '{print $2}') + version=$(apt show polkadot 2>/dev/null | grep "Version:" | awk '{print $2}' | sed 's/-.*//') echo "polkadot_apt_version=v$version" >> $GITHUB_OUTPUT echo "You passed ${{ inputs.version }} but this is ignored" echo "We use the version from the Debian Package: $version"