We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f044b85 commit 481184dCopy full SHA for 481184d
.github/workflows/deploy.yml
@@ -0,0 +1,18 @@
1
+name: Deploy Worker
2
+on:
3
+ push:
4
+ repository_dispatch:
5
+jobs:
6
+ deploy:
7
+ runs-on: ubuntu-latest
8
+ timeout-minutes: 60
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: oven-sh/setup-bun@v2
12
+ - name: Build & Deploy Worker
13
+ uses: cloudflare/wrangler-action@v3
14
+ with:
15
+ apiToken: ${{ secrets.CF_API_TOKEN }}
16
+ accountId: ${{ secrets.CF_ACCOUNT_ID }}
17
+ packageManager: bun
18
+ wranglerVersion: 4.20.0
0 commit comments