Skip to content

Commit

Permalink
ZenHub #1383 - Fix Deployment Issue
Browse files Browse the repository at this point in the history
ZenHub #1383 - Fix Deployment Issue
  • Loading branch information
telusdcinco committed Dec 17, 2024
1 parent 74be54c commit 60d3758
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
#Print variables for logging and debugging purposes
checkEnv:
name: Check Env variables
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Print Env Vars
run: |
Expand All @@ -27,7 +27,7 @@ jobs:

build:
name: Build APP
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
# if: ${{ github.event.pull_request.merged == true}}
if: github.ref_name == 'dev' || github.ref_name == 'test' || github.ref_name == 'prod' || github.ref_name == 'training'
env:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
# Deploy App images in Dev
deployDev:
name: Deploy APP to Dev environment
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.ref_name == 'dev'
env:
BUILD_ID: ${{ github.event.number }}
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
# Deploy App images in Test
deployTest:
name: Deploy APP to Test environment
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.ref_name == 'test'
env:
BUILD_ID: ${{ github.event.number }}
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
# Deploy App images in Prod
deployProd:
name: Deploy APP to Prod environment
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.ref_name == 'prod'
env:
BUILD_ID: ${{ github.event.number }}
Expand Down

0 comments on commit 60d3758

Please sign in to comment.