Skip to content

Commit

Permalink
Merge pull request #820 from i-dot-ai/chore/re-enable-cicd
Browse files Browse the repository at this point in the history
Re-enabled workflows
  • Loading branch information
252afh authored Jul 19, 2024
2 parents 8489914 + ad65ee9 commit 8a6a71d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ permissions:

jobs:
release-dev:
if: ${{ false }}
# if: github.event_name == 'workflow_dispatch'
# if: ${{ false }} # Uncomment this, and comment out the line below, to disable this workflow path
if: github.event_name == 'workflow_dispatch'
uses: i-dot-ai/redbox/.github/workflows/build-and-release.yml@main
with:
environment: dev
Expand All @@ -38,8 +38,8 @@ jobs:
secrets: inherit

release-preprod:
if: ${{ false }}
# if: github.event_name == 'push' && github.ref_name == 'main'
# if: ${{ false }} # Uncomment this, and comment out the line below, to disable this workflow path
if: github.event_name == 'push' && github.ref_name == 'main'
uses: i-dot-ai/redbox/.github/workflows/build-and-release.yml@main
with:
environment: preprod
Expand All @@ -49,8 +49,8 @@ jobs:
secrets: inherit

release-prod:
if: ${{ false }}
# if: github.event_name == 'release'
# if: ${{ false }} # Uncomment this, and comment out the line below, to disable this workflow path
if: github.event_name == 'release'
uses: i-dot-ai/redbox/.github/workflows/build-and-release.yml@main
with:
environment: prod
Expand Down

0 comments on commit 8a6a71d

Please sign in to comment.