We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b81410 commit a5e7b69Copy full SHA for a5e7b69
.github/workflows/deploy.yml
@@ -31,7 +31,7 @@ jobs:
31
32
- name: Build & Deploy
33
shell: bash
34
- run: pnpm run deploy
+ run: pnpm turbo deploy --ui stream
35
env:
36
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
37
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
turbo.json
@@ -1,7 +1,11 @@
1
{
2
"$schema": "https://turborepo.com/schema.json",
3
"ui": "tui",
4
- "globalPassThroughEnv": ["CLOUDFLARE_ACCOUNT_ID"],
+ "globalPassThroughEnv": [
5
+ "CLOUDFLARE_ACCOUNT_ID",
6
+ "CLOUDFLARE_API_TOKEN",
7
+ "CLOUDFLARE_ACCOUNT_ID"
8
+ ],
9
"globalDependencies": ["default-config.ts", "theme/**"],
10
"tasks": {
11
"deploy": {
0 commit comments