Skip to content

Commit bc5bcee

Browse files
committed
Bind to da-collab-stage
1 parent 9026a02 commit bc5bcee

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/deploy-main.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ jobs:
4747
apiToken: ${{ secrets.CLOUDFLARE_AUTH }}
4848
accountId: ${{secrets.CLOUDFLARE_ACCOUNT}}
4949
- name: Post-Deployment Integration Test
50-
run: WORKER_URL="${{ steps.deploy-worker.outputs.deployment-url }}" npm run test:e2e
50+
run: npm run test:e2e
51+
env:
52+
WORKER_URL: ${{ secrets.STAGE_WORKER_URL }}
5153
- name: Semantic Release
5254
run: npm run semantic-release
5355
env:

.github/workflows/install-lint-test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ jobs:
4848
apiToken: ${{ secrets.CLOUDFLARE_AUTH }}
4949
accountId: ${{secrets.CLOUDFLARE_ACCOUNT}}
5050
- name: Post-Deployment Integration Test
51-
run: WORKER_URL="${{ steps.deploy-worker.outputs.deployment-url }}" npm run test:e2e
51+
run: npm run test:e2e
52+
env:
53+
WORKER_URL: ${{ secrets.STAGE_WORKER_URL }}
5254
- name: Semantic Release (Dry Run)
5355
run: npm run semantic-release-dry
5456
env:

wrangler.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ r2_buckets = [
2222
[env.stage]
2323
vars = { ENVIRONMENT = "stage", DA_COLLAB = "https://collab.da.live", DA_BUCKET_NAME = "da-content-stage", VERSION = "@@VERSION@@" }
2424

25-
#services = [
26-
# { binding = "dacollab", service = "da-collab-stage" }
27-
#]
25+
services = [
26+
{ binding = "dacollab", service = "da-collab-stage" }
27+
]
2828

2929
kv_namespaces = [
3030
{ binding = "DA_AUTH", id = "f5cc4d0150ac48d5b56948b5d147c77e" },

0 commit comments

Comments
 (0)