Skip to content

Commit

Permalink
Temporarily modify condition to release all docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchariGr committed May 22, 2023
1 parent 18f3da2 commit e565e6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -846,11 +846,11 @@ jobs:
# Return 'true' if tag version is equal or higher than the latest tagged Rasa version
IS_NEWEST_VERSION=$((printf '%s\n%s\n' "${LATEST_TAGGED_NON_ALPHA_RASA_VERSION}" "$CURRENT_TAG" \
| sort -V -C && echo true || echo false) || true)
# Avoid that the script gets released for alphas or release candidates
# Temporarily the script gets released for all release candidates
if [[ "${IS_NEWEST_VERSION}" == "true" && "$CURRENT_TAG" =~ ^[0-9.]+$ ]]; then
echo "is_newest_version=true" >> $GITHUB_OUTPUT
else
echo "is_newest_version=false" >> $GITHUB_OUTPUT
echo "is_newest_version=true" >> $GITHUB_OUTPUT
fi
- name: Check if a base image exists
Expand Down

0 comments on commit e565e6f

Please sign in to comment.