From c9533e71e621edc694b06677095540efda6bf31d Mon Sep 17 00:00:00 2001 From: Luke Curley Date: Tue, 2 Jun 2026 11:32:43 -0700 Subject: [PATCH] Remove automatic deployment on push to main Delete the deploy workflow that ran `wrangler deploy --env live` on every push to main. Deployments are now manual via `just deploy live`. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/deploy.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 1a27a6c..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: deploy - -on: - push: - branches: ["main"] - -permissions: - contents: read - -jobs: - deploy: - runs-on: ubuntu-latest - timeout-minutes: 15 - concurrency: - group: deploy-${{ github.ref }} - cancel-in-progress: true - - steps: - - uses: actions/checkout@v4 - - uses: oven-sh/setup-bun@v2 - with: - bun-version: 1.3.4 - - - run: bun install --frozen-lockfile - - run: bun run check - - run: bun astro build --mode live - - run: bun wrangler deploy --env live - env: - CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}