Skip to content

Commit c9755c6

Browse files
committed
stuff
1 parent 98a2ce3 commit c9755c6

24 files changed

+1190
-93
lines changed

.github/workflows/deploy.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Deploy to Cloudflare Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
name: Deploy
15+
steps:
16+
- uses: actions/checkout@v3
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: '18'
22+
cache: 'npm'
23+
24+
- name: Install dependencies
25+
run: npm ci
26+
27+
- name: Build application
28+
run: npm run build
29+
30+
- name: Deploy to Cloudflare Pages
31+
uses: cloudflare/wrangler-action@v3
32+
with:
33+
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
34+
command: pages deploy dist --project-name=birchwood-cc
File renamed without changes.

.wrangler/tmp/bundle-Tv1X2W/middleware-insertion-facade.js renamed to .wrangler/tmp/bundle-UkarO9/middleware-insertion-facade.js

File renamed without changes.

.wrangler/tmp/bundle-Tv1X2W/middleware-loader.entry.ts renamed to .wrangler/tmp/bundle-UkarO9/middleware-loader.entry.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// export dynamically through wrangler, or we can potentially let users directly
44
// add them as a sort of "plugin" system.
55

6-
import ENTRY, { __INTERNAL_WRANGLER_MIDDLEWARE__ } from "C:\\Users\\gavin\\OneDrive\\Documents\\Github\\BirchwoodCC\\.wrangler\\tmp\\bundle-Tv1X2W\\middleware-insertion-facade.js";
6+
import ENTRY, { __INTERNAL_WRANGLER_MIDDLEWARE__ } from "C:\\Users\\gavin\\OneDrive\\Documents\\Github\\BirchwoodCC\\.wrangler\\tmp\\bundle-UkarO9\\middleware-insertion-facade.js";
77
import { __facade_invoke__, __facade_register__, Dispatcher } from "C:\\Users\\gavin\\AppData\\Roaming\\npm\\node_modules\\wrangler\\templates\\middleware\\common.ts";
8-
import type { WorkerEntrypointConstructor } from "C:\\Users\\gavin\\OneDrive\\Documents\\Github\\BirchwoodCC\\.wrangler\\tmp\\bundle-Tv1X2W\\middleware-insertion-facade.js";
8+
import type { WorkerEntrypointConstructor } from "C:\\Users\\gavin\\OneDrive\\Documents\\Github\\BirchwoodCC\\.wrangler\\tmp\\bundle-UkarO9\\middleware-insertion-facade.js";
99

1010
// Preserve all the exports from the worker
11-
export * from "C:\\Users\\gavin\\OneDrive\\Documents\\Github\\BirchwoodCC\\.wrangler\\tmp\\bundle-Tv1X2W\\middleware-insertion-facade.js";
11+
export * from "C:\\Users\\gavin\\OneDrive\\Documents\\Github\\BirchwoodCC\\.wrangler\\tmp\\bundle-UkarO9\\middleware-insertion-facade.js";
1212

1313
class __Facade_ScheduledController__ implements ScheduledController {
1414
readonly #noRetry: ScheduledController["noRetry"];

.wrangler/tmp/dev-t0MkJk/functionsWorker-0.5296488285635665.js

Lines changed: 180 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.wrangler/tmp/dev-t0MkJk/functionsWorker-0.5296488285635665.js.map

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)