From 3ca792b69b5b143ab83e38d1466104fa6cbd4dac Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Tue, 23 Apr 2024 12:23:49 +1000 Subject: [PATCH] fix --- .github/workflows/binaries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 42fd398fd..b5ffe8684 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -38,7 +38,7 @@ jobs: run: sudo apt-get update && sudo apt-get -y install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu - name: Setup Version and Name run: | - version=cargo metadata --format-version 1 --no-deps | jq -r '.packages[] | select(.name == "soroban-cli") | .version' + version="$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[] | select(.name == "soroban-cli") | .version')" echo "VERSION=${version}" >> $GITHUB_ENV echo "NAME=soroban-cli-${version}-${{ matrix.target }}" >> $GITHUB_ENV - name: Package