diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e87ed456..b672a7ca 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,9 +35,9 @@ jobs: # Main branch supports all versions if [[ "$BRANCH" == "main" ]] || [[ "$BRANCH" == "4.3.x" ]]; then echo 'versions=["17","21","25"]' >> $GITHUB_OUTPUT - if [[ "$BRANCH" == "4.2.x" ]] || [[ "$BRANCH" == "4.1.x" ]]; then + elif [[ "$BRANCH" == "4.2.x" ]] || [[ "$BRANCH" == "4.1.x" ]]; then echo 'versions=["17","21"]' >> $GITHUB_OUTPUT - if [[ "$BRANCH" == "3.1.x" ]]; then + elif [[ "$BRANCH" == "3.1.x" ]]; then echo 'versions=["8","11","17"]' >> $GITHUB_OUTPUT # Default: use all versions if branch not specified else