Skip to content

Commit

Permalink
Changing OPENSHIFT_ENVIRONMENT to APP_ENVIRONMENT
Browse files Browse the repository at this point in the history
  • Loading branch information
SoLetsDev committed Nov 20, 2023
1 parent 5bc5827 commit 25c1be8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-openshift-backend-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
openshift-ci-cd:
name: Build and deploy Backend to DEV
runs-on: ubuntu-20.04
environment: dev
environment: ${{ env.APP_ENVIRONMENT }}

outputs:
ROUTE: ${{ steps.deploy-and-expose.outputs.route }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-openshift-backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
openshift-ci-cd:
name: Deploy Backend to TEST
runs-on: ubuntu-latest
environment: test
environment: ${{ env.APP_ENVIRONMENT }}

outputs:
ROUTE: ${{ steps.deploy-and-expose.outputs.route }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-openshift-backend-uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
openshift-ci-cd:
name: Deploy Backend to UAT
runs-on: ubuntu-latest
environment: uat
environment: ${{ env.APP_ENVIRONMENT }}

outputs:
ROUTE: ${{ steps.deploy-and-expose.outputs.route }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-openshift-frontend-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
openshift-ci-cd:
name: Build and deploy Frontend to DEV
runs-on: ubuntu-20.04
environment: dev
environment: ${{ env.APP_ENVIRONMENT }}

outputs:
ROUTE: ${{ steps.deploy-and-expose.outputs.route }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-openshift-frontend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
openshift-ci-cd:
name: Deploy Frontend to TEST
runs-on: ubuntu-latest
environment: test
environment: ${{ env.APP_ENVIRONMENT }}

outputs:
ROUTE: ${{ steps.deploy-and-expose.outputs.route }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-openshift-frontend-uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
openshift-ci-cd:
name: Deploy Frontend to UAT
runs-on: ubuntu-latest
environment: uat
environment: ${{ env.APP_ENVIRONMENT }}

outputs:
ROUTE: ${{ steps.deploy-and-expose.outputs.route }}
Expand Down

0 comments on commit 25c1be8

Please sign in to comment.