From 9675d866bbe71bb4b384f4e95f6c49823b1a13c6 Mon Sep 17 00:00:00 2001 From: Christian Kreibich Date: Mon, 15 Nov 2021 09:49:18 -0800 Subject: [PATCH] Fix ref-naming typo in the Github Docker workflow When triggering upon a tag push, we now correctly compute the Docker image tag based on the VERSION file. --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 459e81e417..d84c714ee1 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -61,7 +61,7 @@ jobs: echo "::set-output name=tag::zeek:latest" elif [ "${GITHUB_REF}" = "refs/heads/master" ]; then echo "::set-output name=tag::zeek-dev:latest" - elif [[ "${GITHUB_REF}" = refs/heads/v* ]] && [[ "${GITHUB_REF}" != refs/heads/v*-dev ]]; then + elif [[ "${GITHUB_REF}" = refs/tags/v* ]] && [[ "${GITHUB_REF}" != refs/tags/v*-dev ]]; then echo "::set-output name=tag::zeek:${RELEASE_VERSION}" fi