Skip to content

Commit

Permalink
Adjust CLEAN_BUILDS
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenchristian1telus committed Oct 12, 2023
1 parent 2906a51 commit 4203db3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,13 @@ jobs:
BUILD_NAMESPACE: ${{ env.BUILD_NAMESPACE }}
DEPLOY_NAMESPACE: ${{ env.DEPLOY_NAMESPACE }}
BRANCH: ${{ env.BRANCH }}
CLEAN_BUILDS: ${{ env.CLEAN_BUILDS }}

call-cleanup-workflow:
name: 🧹️ Clean Build ( ${{ env.CLEAN_BUILDS }} )
name: 🧹️ Clean Build ( ${{ needs.build-images.outputs.CLEAN_BUILDS }} )
uses: ./.github/workflows/cleanup.yml
needs: [checkEnv, build-images]
if: success() && ${{ needs.checkEnv.CLEAN_BUILDS == 'YES' }}
if: success() && ${{ needs.build-images.outputs == 'YES' }}
secrets: inherit
with:
APP: ${{ needs.build-images.outputs.APP }}
Expand Down

0 comments on commit 4203db3

Please sign in to comment.