Skip to content

Commit 8210bb6

Browse files
authored
Fix bug where the deployment action was not setting TURBO_TOKEN as a worker secret (#98)
1 parent 91d7d77 commit 8210bb6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
- run: yarn install
1919
- name: Deploy
2020
uses: cloudflare/wrangler-action@v3
21+
env:
22+
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
2123
with:
2224
accountId: ${{ secrets.CF_ACCOUNT_ID }}
2325
apiToken: ${{ secrets.CF_API_TOKEN }}
@@ -26,4 +28,6 @@ jobs:
2628
echo "*** post commands ***"
2729
wrangler r2 bucket create turborepo-cache || true
2830
echo "******"
31+
secrets: |
32+
TURBO_TOKEN
2933
command: 'deploy'

0 commit comments

Comments
 (0)