Bladeren bron

CI: Remove branch conditional from nightly Android build

Apart from the fact that this workflow is failing every time, we don't
need to check the branch we're on since it's only invoked for the
default branch of the repository. We can also remove the `always()`
since there are no job dependencies nor do we want this to be
uncancelable.
Jelle Raaijmakers 7 maanden geleden
bovenliggende
commit
cf9bf59550
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      .github/workflows/nightly-android.yml

+ 1 - 1
.github/workflows/nightly-android.yml

@@ -20,7 +20,7 @@ concurrency:
 jobs:
 jobs:
   CI:
   CI:
     runs-on: ${{ matrix.os }}
     runs-on: ${{ matrix.os }}
-    if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master'
+    if: github.repository == 'LadybirdBrowser/ladybird'
     strategy:
     strategy:
       fail-fast: false
       fail-fast: false
       matrix:
       matrix: