From 0b4d029f403122f31d36b5239d5638ee3039cc42 Mon Sep 17 00:00:00 2001 From: Krishan Kant Sharma Date: Fri, 26 Jun 2026 11:21:07 -0500 Subject: [PATCH] chore: remove Cloudflare Pages deploy workflow Not wiring up Cloudflare Pages at this stage. Signed-off-by: Krishan Kant Sharma --- .github/workflows/deploy.yml | 27 --------------------------- 1 file changed, 27 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 60eedf9..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deploy - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - deploy: - runs-on: ubuntu-latest - permissions: - contents: read - deployments: write - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: npm - - run: npm ci - - run: npm run build - - uses: cloudflare/wrangler-action@v3 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - command: pages deploy dist --project-name=flaglint