Skip to content

Commit

Permalink
Update conditional.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4handjr committed Jun 27, 2024
1 parent 8806f79 commit 77d9171
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ jobs:
done
- name: Download and install Android files
if: |
steps.cache_test_apk.outputs.cache-hit != 'true' &&
(${{ matrix.firefox }} > 125.0.0)
(steps.cache_test_apk.outputs.cache-hit != 'true') &&
(matrix.firefox > '125.0.0')
run: |
cd klaatu
pip3 install virtualenv poetry
Expand All @@ -119,7 +119,7 @@ jobs:
ANDROID_SDK_HOME: $ANDROID_HOME
ANDROID_NDK_HOME: $ANDROID_NDK_HOME
- name: Build and install Android version sub 126
if: ${{ matrix.firefox }} < 126.0.0
if: matrix.firefox < '126.0.0'
run: |
cd firefox-android/fenix
./gradlew clean app:assembleFenixDebugAndroidTest
Expand Down

0 comments on commit 77d9171

Please sign in to comment.