File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -26838,9 +26838,12 @@ try {
26838
26838
},
26839
26839
];
26840
26840
const testMatrix = [];
26841
+ const excludeRegex = /lbox-example/;
26842
+
26841
26843
const packages = files.map(file => {
26842
26844
return file.split('/')[1];
26843
- });
26845
+ }).filter(pkg => pkg !== null && !excludeRegex.test(pkg));
26846
+
26844
26847
const uniquePackages = [... new Set(packages)];
26845
26848
uniquePackages.forEach(package => {
26846
26849
startingMatrix.forEach(matrixItem => {
@@ -26857,7 +26860,7 @@ try {
26857
26860
});
26858
26861
});
26859
26862
const testMatrixJSON = JSON.stringify(testMatrix);
26860
- core.info("Test Matrix ");
26863
+ core.info("Test Matrixvb ");
26861
26864
core.info(testMatrixJSON);
26862
26865
core.setOutput("test-matrix", testMatrixJSON);
26863
26866
core.info("Publish Matrix");
Original file line number Diff line number Diff line change 54
54
steps :
55
55
- uses : actions/checkout@v4
56
56
with :
57
- # ref: ${{ inputs.tag }}
58
57
ref : ${{ inputs.tag }}
59
58
- name : Install the latest version of rye
60
59
uses : eifinger/setup-rye@v2
You can’t perform that action at this time.
0 commit comments