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.
This commit is contained in:
Jelle Raaijmakers 2024-12-12 12:06:20 +01:00 committed by Tim Flynn
parent b00bb05b6b
commit cf9bf59550
Notes: github-actions[bot] 2024-12-17 13:50:10 +00:00

View file

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