Update README.md #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | ||
### 📜 **4. `.github/workflows/deploy.yml` (GitHub Actions for Auto Deployment)** | ||
This GitHub Action will automatically deploy the bot when you push changes. | ||
```yaml | ||
name: Deploy to Cloudflare Workers | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Install Wrangler | ||
run: npm install -g wrangler | ||
- name: Authenticate with Cloudflare | ||
run: wrangler login | ||
- name: Deploy Worker | ||
run: wrangler deploy |