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 authored and trflynn89 committed Dec 17, 2024
1 parent b00bb05 commit cf9bf59
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 cf9bf59

Please sign in to comment.