Skip to content

Commit

Permalink
ci: remove unnecessary if check
Browse files Browse the repository at this point in the history
  • Loading branch information
bittermandel authored Mar 14, 2024
1 parent 3fbab05 commit ce2c6fa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ jobs:
- build

if: |
always() && needs.base.result == 'success' &&
((needs.build.result == 'success' && needs.build.outputs.tag_commit != '' ) || (needs.build.result == 'skipped' && needs.base.outputs.yaml_updated == 'true'))
needs.base.result == 'success' && (needs.build.result == 'success' || needs.base.outputs.yaml_updated == 'true')
runs-on: ubuntu-latest

Expand Down

0 comments on commit ce2c6fa

Please sign in to comment.