Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Dec 13, 2023
1 parent 60480f1 commit 1c2ce91
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 @@ -7659,7 +7659,7 @@ async function getClusterVersions() {
const versionsToTest = [];

clusterVersions.forEach((distribution) => {
const distroName = distribution.short_name;
let distroName = distribution.short_name;

if (distroName === 'helmvm' || distroName === 'kurl') {
// excluding the embedded distributions
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 @@ -39,7 +39,7 @@ async function getClusterVersions() {
const versionsToTest = [];

clusterVersions.forEach((distribution) => {
const distroName = distribution.short_name;
let distroName = distribution.short_name;

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

0 comments on commit 1c2ce91

Please sign in to comment.