Skip to content

Commit 432f915

Browse files
committed
Merge branch 'nightly' of https://github.com/LizardByte/Sunshine into nightly
2 parents 36eaba3 + c896dab commit 432f915

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,10 @@ jobs:
507507
508508
- name: Upload coverage
509509
# any except canceled or skipped
510-
if: always() && (steps.test_report.outcome == 'success')
510+
if: >-
511+
always() &&
512+
(steps.test_report.outcome == 'success') &&
513+
startsWith(github.repository, 'LizardByte/')
511514
uses: codecov/codecov-action@v4
512515
with:
513516
fail_ci_if_error: true
@@ -832,7 +835,10 @@ jobs:
832835
833836
- name: Upload coverage
834837
# any except canceled or skipped
835-
if: always() && (steps.test_report.outcome == 'success')
838+
if: >-
839+
always() &&
840+
(steps.test_report.outcome == 'success') &&
841+
startsWith(github.repository, 'LizardByte/')
836842
uses: codecov/codecov-action@v4
837843
with:
838844
fail_ci_if_error: false # todo: re-enable this when action is fixed
@@ -1069,7 +1075,10 @@ jobs:
10691075
10701076
- name: Upload coverage
10711077
# any except canceled or skipped
1072-
if: always() && (steps.test_report.outcome == 'success')
1078+
if: >-
1079+
always() &&
1080+
(steps.test_report.outcome == 'success') &&
1081+
startsWith(github.repository, 'LizardByte/')
10731082
uses: codecov/codecov-action@v4
10741083
with:
10751084
fail_ci_if_error: false

0 commit comments

Comments
 (0)