how did you figure it out so fast tho?
how did you figure it out so fast tho?



this is from the graphql analytics docs but I'm guessing that applies here as well?
wrangler pages deploy that the page and its functions is successfully deployed and reachable?bun create cloudflare@latest my-new-project -- --framework=remix) and I wanted to deploy it to Cloudlfare Pages. My issue right now is that its showing "....page can't be found" My remix app is inside the apps folder.on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Bun environment
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.13
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Create Cloudflare Pages project
uses: cloudflare/wrangler-action@v3
continue-on-error: true
with:
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
command: pages project create test-project --production-branch main
- name: Deploy Cloudflare Pages project
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
command: pages deploy "./apps/test-project/public/build" --project-name=test-projectwrangler, then no2023-12-13T14:02:26.624Z our pages deployment had an incoming request (we handle it as a webhoook), and everything within the webhook successly ran and executed as normal.on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Bun environment
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.13
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
- name: Create Cloudflare Pages project
uses: cloudflare/wrangler-action@v3
continue-on-error: true
with:
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
command: pages project create test-project --production-branch main
- name: Deploy Cloudflare Pages project
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_WORKERS_API_TOKEN }}
command: pages deploy "./apps/test-project/public/build" --project-name=test-project