Skip to content

Commit

Permalink
fix: jobs succeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-sartori-zupit committed Sep 26, 2024
1 parent a3361bd commit 71935ed
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/dotnet-workflow-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,11 @@ jobs:
with:
WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }}
GENERATE_CODE_COVERAGE: false

jobs-succeded:
needs: dotnet-common
runs-on: ubuntu-latest
if: ${{ always()}}
steps:
- name: Jobs succeeded.
run: if [ "${{ needs.dotnet-common.result }}" == "failure" ]; then exit 1; fi

0 comments on commit 71935ed

Please sign in to comment.