There was an error while loading. Please reload this page.
1 parent 3ee48af commit b0ef0eeCopy full SHA for b0ef0ee
1 file changed
.github/workflows/deploy-workers.yml
@@ -119,3 +119,25 @@ jobs:
119
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
120
workingDirectory: apps/webhooks-worker
121
command: deploy
122
+
123
+ deploy-preview-proxy:
124
+ runs-on: ubuntu-latest
125
+ needs: deploy-webhooks
126
+ environment: production
127
+ steps:
128
+ - uses: actions/checkout@v4
129
+ - uses: pnpm/action-setup@v4
130
+ with:
131
+ version: 10.33.2
132
+ - uses: actions/setup-node@v4
133
134
+ node-version: 22
135
+ cache: pnpm
136
+ - run: pnpm install --frozen-lockfile
137
+ - run: pnpm turbo build --filter=@cheatcode/preview-proxy
138
+ - uses: cloudflare/wrangler-action@v3
139
140
+ apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
141
+ accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
142
+ workingDirectory: apps/preview-proxy
143
+ command: deploy
0 commit comments