@tahminator/pipeline 1.0.60-beta.ad3a6c70 → 1.0.61

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.
@@ -6,7 +6,7 @@ async function main() {
6
6
  }
7
7
  const secretsJson = process.env.SECRETS;
8
8
  if (!secretsJson) {
9
- throw new Error("SECRETS env var is required");
9
+ throw new Error("SECRETS is required and not defined");
10
10
  }
11
11
  for (const [k, _v] of Object.entries(JSON.parse(secretsJson))) {
12
12
  const v = String(_v);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "author": "Tahmid Ahmed",
5
5
  "description": "A collection of Bun shell scripts that can be re-used in various CICD pipelines.",
6
- "version": "1.0.60-beta.ad3a6c70",
6
+ "version": "1.0.61",
7
7
  "repository": {
8
8
  "url": "git+https://github.com/tahminator/pipeline.git"
9
9
  },