Skip to content

Commit

Permalink
testing docker action
Browse files Browse the repository at this point in the history
  • Loading branch information
Uroš Marolt committed Jan 9, 2024
1 parent 1e0a106 commit 17a0313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/node/builder/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26193,7 +26193,7 @@ const getDeployIUputs = () => {
core.error('No CLOUD_ENV environment variable found!');
throw new Error('No CLOUD_ENV environment variable found!');
}
const eksClusterName = process.env.EKS_CLUSTER_NAME;
const eksClusterName = process.env.CROWD_CLUSTER;
if (!eksClusterName) {
core.error('No EKS_CLUSTER_NAME environment variable found!');
throw new Error('No EKS_CLUSTER_NAME environment variable found!');
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/node/src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const getDeployIUputs = (): IDeployInput => {
throw new Error('No CLOUD_ENV environment variable found!')
}

const eksClusterName = process.env.EKS_CLUSTER_NAME
const eksClusterName = process.env.CROWD_CLUSTER
if (!eksClusterName) {
core.error('No EKS_CLUSTER_NAME environment variable found!')
throw new Error('No EKS_CLUSTER_NAME environment variable found!')
Expand Down

0 comments on commit 17a0313

Please sign in to comment.