diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfa819c..892657f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,9 +33,6 @@ jobs: WEBHOOK_SECRET APP_ID PRIVATE_KEY - postCommands: | - wrangler kv:namespace create PLUGIN_CHAIN_STATE - wrangler kv:key put --binding=PLUGIN_CHAIN_STATE id "TO_BE_FILLED" env: WEBHOOK_PROXY_URL: ${{ secrets.WEBHOOK_PROXY_URL }} WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }} diff --git a/bun.lockb b/bun.lockb index eaaf7f1..ec0d7d5 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index ed44f40..a597354 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "prettier": "^3.2.5", "tsx": "^4.7.1", "typescript": "^5.3.3", - "wrangler": "^3.23.0" + "wrangler": "3.57.1" }, "lint-staged": { "*.ts": [ diff --git a/src/github/utils/workflow-dispatch.ts b/src/github/utils/workflow-dispatch.ts index a95312b..0b00d72 100644 --- a/src/github/utils/workflow-dispatch.ts +++ b/src/github/utils/workflow-dispatch.ts @@ -41,7 +41,7 @@ export async function dispatchWorker(targetUrl: string, payload: WorkflowDispatc "Content-Type": "application/json", }, }); - console.log("response", result.status); + console.log("response", result.status, await result.text()); return result.json(); }