Skip to content

Commit

Permalink
MP1-Master: Add Status to Release action
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjswan authored Aug 22, 2023
1 parent 08201a2 commit d9d7f8b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/mediaportal_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,19 @@ jobs:
needs: [build, release]
permissions:
security-events: write

ci-status:
name: Status
runs-on: ubuntu-latest
needs:
- build
- release
- codeql
if: always()
steps:
- name: Success
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Failure
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1

0 comments on commit d9d7f8b

Please sign in to comment.