Skip to content

Commit

Permalink
Fixed deployment bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cditcher committed Dec 17, 2024
1 parent c0dd8b1 commit ee309f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-n-deploy-frontend-to-ocp-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
MAX_REPLICAS: "5"

# SITE_URL should have no scheme or port. It will be prepended with https://
HOST_ROUTE: "educ-grad-admin-bbe4c3-dev.apps.silver.devops.gov.bc.ca"
HOST_ROUTE: "educ-grad-admin-${{ secrets.UI_NAMESPACE }}-dev.apps.silver.devops.gov.bc.ca"

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-backend-to-ocp-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ env:
MAX_REPLICAS: "5"

# SITE_URL should have no scheme or port. It will be prepended with https://
HOST_ROUTE: "educ-grad-admin-${{ env.OPENSHIFT_NAMESPACE }}.apps.silver.devops.gov.bc.ca"
HOST_ROUTE: "educ-grad-admin-${{ secrets.UI_NAMESPACE }}-prod.apps.silver.devops.gov.bc.ca"

on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-backend-to-ocp-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ jobs:
- name: ZAP Scan
uses: zaproxy/[email protected]
with:
target: "https://educ-grad-admin-bbe4c3-test.apps.silver.devops.gov.bc.ca"
target: "https://educ-grad-admin-${{ secrets.UI_NAMESPACE }}-test.apps.silver.devops.gov.bc.ca"
4 changes: 2 additions & 2 deletions .github/workflows/deploy-frontend-to-ocp-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:
MAX_REPLICAS: "5"

# SITE_URL should have no scheme or port. It will be prepended with https://
HOST_ROUTE: "educ-grad-admin-bbe4c3-test.apps.silver.devops.gov.bc.ca"
HOST_ROUTE: "educ-grad-admin-${{ secrets.UI_NAMESPACE }}-test.apps.silver.devops.gov.bc.ca"

on:
workflow_dispatch:
Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
- name: ZAP Scan
uses: zaproxy/[email protected]
with:
target: "https://educ-grad-admin-bbe4c3-test.apps.silver.devops.gov.bc.ca"
target: "https://educ-grad-admin-${{ secrets.UI_NAMESPACE }}-test.apps.silver.devops.gov.bc.ca"

0 comments on commit ee309f5

Please sign in to comment.