Skip to content

Commit 269a72c

Browse files
committed
add db_url to staging deployment file
1 parent 71d5b05 commit 269a72c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy_to_staging.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- name: Run tests
1818
env:
1919
GH_PRIVATE_KEY: ${{ secrets.GH_STAGING_PRIVATE_KEY }}
20+
DB_URL: ${{secrets.STAGING_DB_URL}}
2021
run: cargo test -- --nocapture
2122

2223
deploy_to_staging:
@@ -63,7 +64,8 @@ jobs:
6364
"8080": "HTTP"
6465
},
6566
"environment": {
66-
"GH_PRIVATE_KEY": "${{secrets.GH_STAGING_PRIVATE_KEY}}"
67+
"GH_PRIVATE_KEY": "${{secrets.GH_STAGING_PRIVATE_KEY}}",
68+
"DB_URL": "${{secrets.STAGING_DB_URL}}"
6769
}
6870
}
6971
}' > containers.json

0 commit comments

Comments
 (0)