Skip to content

Commit d40fb6e

Browse files
authored
Need to exclude lb-example explicitly (#1947)
1 parent f67788f commit d40fb6e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/actions/lbox-matrix/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26838,9 +26838,12 @@ try {
2683826838
},
2683926839
];
2684026840
const testMatrix = [];
26841+
const excludeRegex = /lbox-example/;
26842+
2684126843
const packages = files.map(file => {
2684226844
return file.split('/')[1];
26843-
});
26845+
}).filter(pkg => pkg !== null && !excludeRegex.test(pkg));
26846+
2684426847
const uniquePackages = [... new Set(packages)];
2684526848
uniquePackages.forEach(package => {
2684626849
startingMatrix.forEach(matrixItem => {

.github/workflows/lbox-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
steps:
5555
- uses: actions/checkout@v4
5656
with:
57-
# ref: ${{ inputs.tag }}
5857
ref: ${{ inputs.tag }}
5958
- name: Install the latest version of rye
6059
uses: eifinger/setup-rye@v2

0 commit comments

Comments
 (0)