From 726147452ef77354c761352e6959622565173039 Mon Sep 17 00:00:00 2001 From: Ravindra Singh Rathor Date: Thu, 28 May 2026 17:47:09 +0530 Subject: [PATCH] ci(release): adding environment name explicitly --- angular-examples/wrangler.jsonc | 3 +++ html-examples/wrangler.jsonc | 3 +++ react-examples/wrangler.jsonc | 3 +++ 3 files changed, 9 insertions(+) diff --git a/angular-examples/wrangler.jsonc b/angular-examples/wrangler.jsonc index 76a1250..a027b9a 100644 --- a/angular-examples/wrangler.jsonc +++ b/angular-examples/wrangler.jsonc @@ -8,6 +8,9 @@ "env": { "staging": { "name": "angular-examples-staging" + }, + "production": { + "name": "angular-examples" } } } \ No newline at end of file diff --git a/html-examples/wrangler.jsonc b/html-examples/wrangler.jsonc index 4980c6a..b378166 100644 --- a/html-examples/wrangler.jsonc +++ b/html-examples/wrangler.jsonc @@ -8,6 +8,9 @@ "env": { "staging": { "name": "html-examples-staging" + }, + "production": { + "name": "html-examples" } } } diff --git a/react-examples/wrangler.jsonc b/react-examples/wrangler.jsonc index d8f2d3d..c8709f6 100644 --- a/react-examples/wrangler.jsonc +++ b/react-examples/wrangler.jsonc @@ -9,6 +9,9 @@ "env": { "staging": { "name": "react-examples-staging" + }, + "production": { + "name": "react-examples" } } }