mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
fix
This commit is contained in:
parent
e6aecf98a1
commit
e47bfc85cc
2 changed files with 2 additions and 1 deletions
1
.github/workflows/deploy-api.yml
vendored
1
.github/workflows/deploy-api.yml
vendored
|
|
@ -31,6 +31,7 @@ jobs:
|
|||
- name: Build
|
||||
run: pnpm api:build
|
||||
env:
|
||||
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
|
||||
NITRO_PRESET: cloudflare
|
||||
|
||||
- name: Publish to Cloudflare
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ export default defineEventHandler(async (event) => {
|
|||
if (!["bug", "suggestion", "other", "appreciate"].includes(feedbackType!) || !message) {
|
||||
throw new Error("Invalid input.");
|
||||
}
|
||||
console.log(env.WEBHOOK_URL);
|
||||
console.log(env.WEBHOOK_URL, process.env.WEBHOOK_URL);
|
||||
await fetcher()
|
||||
.post(env.WEBHOOK_URL, {
|
||||
username: "Feedback",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue