We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49ae614 commit b178977Copy full SHA for b178977
.github/workflows/deploy.yml
@@ -56,6 +56,13 @@ jobs:
56
- name: 📥 Download deps
57
run: bun install
58
59
+ - name: 🔄 Replace zone_id placeholder
60
+ if: ${{ github.ref == 'refs/heads/main' }}
61
+ run: |
62
+ sed -i "s/__ZONE_ID__/${CLOUDFLARE_ZONE_ID}/g" wrangler.jsonc
63
+ env:
64
+ CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }}
65
+
66
- name: 🔒 Set Worker Secrets
67
if: ${{ github.ref == 'refs/heads/main' }}
68
run: |
wrangler.jsonc
@@ -21,6 +21,16 @@
21
"SENTRY_DSN": ""
22
}
23
24
+ },
25
+ "routes": [
26
+ {
27
+ "pattern": "arpit.im/*",
28
+ "zone_id": "__ZONE_ID__"
29
+ }
30
+ ],
31
+ "observability": {
32
+ "enabled": true,
33
+ "head_sampling_rate": 1
34
35
// "kv_namespaces": [
36
// {
0 commit comments