From 8d8944c387d36c639738b8d0d2368879e221611a Mon Sep 17 00:00:00 2001 From: Serge Radinovich <47865535+sergerad@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:01:31 +1300 Subject: [PATCH] Fix testnet workflow missing delim (#23) --- .github/workflows/testnet.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testnet.yaml b/.github/workflows/testnet.yaml index f0735cafa..3b853d702 100644 --- a/.github/workflows/testnet.yaml +++ b/.github/workflows/testnet.yaml @@ -29,5 +29,5 @@ jobs: testnet_image="ghcr.io/${{ github.repository }}/immutable-geth:testnet-${{ inputs.version }}" docker pull "$dev_image" - docker tag "$dev_image" $testnet_image" + docker tag "$dev_image" "$testnet_image" docker push "$testnet_image"