Fixing deploy.yml

This commit is contained in:
Ryan Baxter
2025-12-15 15:32:46 -05:00
parent 875eec23b9
commit 6450feb88f
+2 -2
View File
@@ -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