Skip to content

Commit

Permalink
chore: test add kv
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed May 27, 2024
1 parent fbd0d51 commit 7444bad
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion src/github/utils/workflow-dispatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 7444bad

Please sign in to comment.