mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
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.
This commit is contained in:
parent
59d7d2896c
commit
9675d866bb
1 changed files with 1 additions and 1 deletions
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
|
@ -61,7 +61,7 @@ jobs:
|
||||||
echo "::set-output name=tag::zeek:latest"
|
echo "::set-output name=tag::zeek:latest"
|
||||||
elif [ "${GITHUB_REF}" = "refs/heads/master" ]; then
|
elif [ "${GITHUB_REF}" = "refs/heads/master" ]; then
|
||||||
echo "::set-output name=tag::zeek-dev:latest"
|
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}"
|
echo "::set-output name=tag::zeek:${RELEASE_VERSION}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue