From 2c2405a28b21d507456fea8ece8604a9709e2508 Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Sat, 14 Mar 2026 14:37:57 -0500 Subject: [PATCH] fix: remove unconfigured auto-deploy.yml workflow --- .github/workflows/auto-deploy.yml | 33 ------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/auto-deploy.yml diff --git a/.github/workflows/auto-deploy.yml b/.github/workflows/auto-deploy.yml deleted file mode 100644 index 018c4b5..0000000 --- a/.github/workflows/auto-deploy.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: "🚀 Auto Deploy" - -on: - push: - branches: [main, master] - workflow_dispatch: - -jobs: - deploy: - name: Deploy to Cloudflare Pages - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Install & Build - run: | - if [ -f "package.json" ]; then - npm install - npm run build 2>/dev/null || true - fi - - - name: Deploy to Cloudflare Pages - uses: cloudflare/wrangler-action@v3 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - command: pages deploy . --project-name=${{ github.event.repository.name }}