Skip to content

Commit

Permalink
CI: Remove branch conditional from nightly Android build
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gmta committed Dec 12, 2024
1 parent e57dbf8 commit df19cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit df19cc2

Please sign in to comment.