Skip to content

Commit

Permalink
chore: check if repoupdate job
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMod authored Jul 1, 2022
2 parents a029e7c + 0b79ea5 commit 2501e97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -578,8 +578,11 @@ jobs:
kubectl apply -f deployment.yml
RepoUpdate:
if: ${{ github.event.inputs.version == '' }}
needs: [CheckInputModules, DryRunRelease, Deploy]
if: ${{ github.event.inputs.version == '' && always() &&
needs.CheckInputModules.result == 'success' && needs.DryRunRelease.result == 'success' && needs.Deploy.result == 'success' &&
(needs.buildFE.result == 'success' || needs.buildFE.result == 'skipped') &&
(needs.buildBE.result == 'success' || needs.buildBE.result == 'skipped') }}
name: Repo Update
runs-on: ubuntu-latest
environment: ${{ github.event.inputs.environment }}
Expand Down

0 comments on commit 2501e97

Please sign in to comment.