fix: remove unconfigured auto-deploy.yml workflow

This commit is contained in:
Alexa Amundson
2026-03-14 14:37:57 -05:00
parent b4bab8c996
commit 2c2405a28b

View File

@@ -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 }}