diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 73c6d2c..e8b144a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -15,7 +15,7 @@ jobs: with: name: "deploy-worker-action" main: "./worker.js" - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: "🚀 Built Successfully" - push_options: --force + # - uses: stefanzweifel/git-auto-commit-action@v4 + # with: + # commit_message: "🚀 Built Successfully" + # push_options: --force diff --git a/dist/index.js b/dist/index.js deleted file mode 100644 index 37bead8..0000000 --- a/dist/index.js +++ /dev/null @@ -1,13 +0,0 @@ -(() => { - // http-url:https://pkg.do/-/apis.do@v0.1.4-Mex89NkRiV64L912OZmg/dist=es2019,mode=imports/optimized/apis.do.js - var json = (data) => new Response(JSON.stringify(data, null, 2), { headers: { "content-type": "application/json; charset=utf-8" } }); - var categories = Object.entries(apis).reduce((acc, [name, item]) => { - acc[item.type] = acc[item.type] || []; - acc[item.type].push({ name, ...item }); - }, {}); - - // worker.js - var worker_default = { - fetch: () => json({ hello: "world" }) - }; -})();