Skip to content

Commit

Permalink
Update environment variables in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenchristian1telus committed Feb 29, 2024
1 parent 15909c1 commit 39a545d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/db-backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
OPENSHIFT_DEPLOY_PROJECT: e66ac2-dev
# Proxy settings for local development / testing
# https_proxy: http://198.161.14.25:8080
# no_proxy: ${{ secrets.OPENSHIFT_SERVER }}
# no_proxy: ${{ env.OPENSHIFT_SERVER }}
BACKUP_IMAGE: bcgovimages/backup-container-mariadb
steps:
- name: Install oc
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
with:
insecure_skip_tls_verify: false
reveal_cluster_name: false
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }}
openshift_server_url: ${{ env.OPENSHIFT_SERVER }}
openshift_token: ${{ secrets.AUTH_TOKEN_DEV }}
namespace: ${{ env.OPENSHIFT_DEPLOY_PROJECT }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
env:
# Proxy settings for local development / testing
#https_proxy: http://198.161.14.25:8080
# no_proxy: ${{ secrets.OPENSHIFT_SERVER }}
# no_proxy: ${{ env.OPENSHIFT_SERVER }}
if: ${{ needs.checkEnv.SKIP_BUILDS != 'YES' }} && (github.ref_name == 'dev' || github.ref_name == 'test' || github.ref_name == 'prod')
steps:
# Login to Artifactory
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
with:
insecure_skip_tls_verify: false
reveal_cluster_name: false
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }}
openshift_server_url: ${{ env.OPENSHIFT_SERVER }}
openshift_token: ${{ secrets.AUTH_TOKEN_DEV }}
namespace: ${{ steps.dotenv.outputs.OPENSHIFT_DEPLOY_PROJECT }}

Expand Down

0 comments on commit 39a545d

Please sign in to comment.