Skip to content

Commit

Permalink
return to excluding helmvm from some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
laverya committed Oct 24, 2023
1 parent 420e493 commit c39598d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cmx-versions/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7661,7 +7661,7 @@ async function getClusterVersions() {
clusterVersions.forEach((distribution) => {
const distroName = distribution.short_name;

if (distroName === 'embedded_cluster' || distroName === 'kurl') {
if (distroName === 'helmvm' || distroName === 'kurl') {
// excluding the embedded distributions
return;
}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/cmx-versions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function getClusterVersions() {
clusterVersions.forEach((distribution) => {
const distroName = distribution.short_name;

if (distroName === 'embedded_cluster' || distroName === 'kurl') {
if (distroName === 'helmvm' || distroName === 'kurl') {
// excluding the embedded distributions
return;
}
Expand Down

0 comments on commit c39598d

Please sign in to comment.