Skip to content

Commit

Permalink
Aggregate all required build for better control
Browse files Browse the repository at this point in the history
  • Loading branch information
xjunior committed Oct 11, 2024
1 parent 674055e commit 8250a08
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/audiences-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,20 @@ jobs:
with:
workdir: audiences

all:
if: ${{ always() }}
runs-on: ubuntu-latest
name: All
needs: [build, license-compliance]
steps:
- run: |
result="${{ needs.build.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi
release:
needs: [build, license-compliance]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8250a08

Please sign in to comment.