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 481184d commit ce2ae73Copy full SHA for ce2ae73
.github/workflows/deploy.yml
@@ -9,10 +9,7 @@ jobs:
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
+ - name: Set Cloudflare API Token
+ run: echo "CLOUDFLARE_API_TOKEN=${{ secrets.CF_API_TOKEN }}" >> $GITHUB_ENV
+ - name: Deploy
+ run: bun run deploy
0 commit comments