We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 757d1aa commit 9ef3731Copy full SHA for 9ef3731
.github/actions/determine-tags/action.yml
@@ -84,7 +84,7 @@ runs:
84
# Logic for release events
85
if [ "$EVENT_NAME" == "release" ]; then
86
IMAGE_TAGS="$BASE_IMAGE:$NORMALIZED_RELEASE"
87
- if [ "$VERSION" == "$NORMALIZED_RELEASE" ] && [ "$NORMALIZED_RELEASE" == "$NORMALIZED_LATEST_RELEASE" ]; then
+ if [ "$VERSION" == "$NORMALIZED_RELEASE" ] && [ "$NORMALIZED_RELEASE" == "$NORMALIZED_LATEST_RELEASE" ] && [[ "$NORMALIZED_RELEASE" != *rc* ]]; then
88
IMAGE_TAGS="$IMAGE_TAGS,$BASE_IMAGE:latest"
89
fi
90
0 commit comments