Skip to content

Commit

Permalink
feat: build latest 6.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Jul 26, 2024
1 parent 0169306 commit 54d94e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matrix.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const matrix = [];
const alreadyAddedVersion = new Set();

for (const swVersion of Object.keys(swToPHP).reverse()) {
if (swVersion.indexOf('6.6') !== 0 || swVersion.indexOf('RC') !== -1) {
if ((swVersion.indexOf('6.6') !== 0 && swVersion.indexOf('6.5.8') !== 0) || swVersion.indexOf('RC') !== -1) {
continue;
}

Expand Down

0 comments on commit 54d94e3

Please sign in to comment.