Skip to content

Commit ac46028

Browse files
feat: Add ADMIN_EMAILS environment variable to deployment and test workflows (#252)
* feat: Add ADMIN_EMAILS environment variable to deployment and test workflows * fix: Correct ADMIN_EMAILS variable reference in deployment script
1 parent 5400bea commit ac46028

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,5 @@ jobs:
7676
-e TODO_UI_REDIRECT_PATH="${{ vars.TODO_UI_REDIRECT_PATH }}" \
7777
-e CORS_ALLOWED_ORIGINS="${{ vars.CORS_ALLOWED_ORIGINS }}" \
7878
-e SWAGGER_UI_PATH="${{ vars.SWAGGER_UI_PATH }}" \
79+
-e ADMIN_EMAILS="${{ vars.ADMIN_EMAILS }}" \
7980
${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
TODO_UI_REDIRECT_PATH: "dashboard"
3232
TODO_BACKEND_BASE_URL: "http://localhost:8000"
3333
CORS_ALLOWED_ORIGINS: "http://localhost:3000,http://localhost:8000"
34+
ADMIN_EMAILS: "[email protected]"
3435

3536
steps:
3637
- name: Checkout code

0 commit comments

Comments
 (0)