Skip to content

Commit

Permalink
Merge pull request #788 from i-dot-ai/chore/turn-off-cicd-until-pente…
Browse files Browse the repository at this point in the history
…st-finishes

Turn off cicd for now
  • Loading branch information
252afh committed Jul 16, 2024
2 parents 1e39eec + 37ed58c commit b09987f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ permissions:

jobs:
release-dev:
if: github.event_name == 'workflow_dispatch'
if: ${{ false }}
# if: github.event_name == 'workflow_dispatch'
uses: i-dot-ai/redbox/.github/workflows/build-and-release.yml@main
with:
environment: dev
Expand All @@ -37,7 +38,8 @@ jobs:
secrets: inherit

release-preprod:
if: github.event_name == 'push' && github.ref_name == 'main'
if: ${{ false }}
# 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 @@ -47,7 +49,8 @@ jobs:
secrets: inherit

release-prod:
if: github.event_name == 'release'
if: ${{ false }}
# 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 b09987f

Please sign in to comment.