From fd041daf3de9f46181c28eeadc14c5356b2d241e Mon Sep 17 00:00:00 2001
From: Aayush Shah <aayush.shah15@gmail.com>
Date: Thu, 19 Sep 2024 21:33:56 -0600
Subject: [PATCH] point to anvil staging environment (#3)

---
 src/main.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.ts b/src/main.ts
index c82be3d..ae85375 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -24,7 +24,7 @@ const buildxVersion = 'v0.17.0';
 
 async function getBlacksmithHttpClient(): Promise<AxiosInstance> {
   return axios.create({
-    baseURL: process.env.BUILDER_URL || 'https://d04fa050a7b2.ngrok.app/build_tasks',
+    baseURL: process.env.BUILDER_URL || 'https://staginganvil.blacksmith.sh/build_tasks',
     headers: {
       Authorization: `Bearer ${process.env.BLACKSMITH_ANVIL_TOKEN}`
     }