Skip to content

Commit

Permalink
MP1.33-Pre: Update Test build Action
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjswan authored Jan 3, 2024
1 parent 16eef2c commit 3744325
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/mediaportal_test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,17 @@ jobs:
${{ github.workspace }}\Release\MediaPortalSetup_*.exe
if-no-files-found: error
retention-days: 7

ci-status:
name: Status
runs-on: ubuntu-latest
needs:
- build
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 3744325

Please sign in to comment.