@catladder/cli 1.136.6 → 1.136.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  }
53
53
  ],
54
54
  "license": "MIT",
55
- "version": "1.136.6",
55
+ "version": "1.136.7",
56
56
  "scripts": {
57
57
  "lint": "eslint \"src/**/*.ts\"",
58
58
  "lint:fix": "eslint \"src/**/*.ts\" --fix",
@@ -74,7 +74,7 @@
74
74
  "ts-node": "^10.9.1"
75
75
  },
76
76
  "devDependencies": {
77
- "@catladder/pipeline": "1.136.6",
77
+ "@catladder/pipeline": "1.136.7",
78
78
  "@gitbeaker/rest": "^39.28.0",
79
79
  "@kubernetes/client-node": "^0.16.2",
80
80
  "@tsconfig/node14": "^1.0.1",
@@ -134,7 +134,7 @@ const resolveSecrets = async (
134
134
  .map(([key, value]) => {
135
135
  const secretKey = set.secretEnvVarKeys.find((k) => k.key === key);
136
136
 
137
- if (secretKey?.hidden) {
137
+ if (secretKey?.hidden || value === undefined) {
138
138
  return null;
139
139
  }
140
140