Skip to content

Commit 1d8dc2f

Browse files
committed
Use single quotes
1 parent bd7b642 commit 1d8dc2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/build-android/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131

3232
# (https://github.blog/changelog/2024-04-02-github-actions-hardware-accelerated-android-virtualization-now-available/).
3333
- name: Enable KVM for Android emulator
34-
if: runner.os == "Linux"
34+
if: runner.os == 'Linux'
3535
shell: bash
3636
run: |
3737
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' \
@@ -40,14 +40,14 @@ runs:
4040
sudo udevadm trigger --name-match=kvm
4141
4242
- name: Unpack release artifact
43-
if: runner.os == "Linux"
43+
if: runner.os == 'Linux'
4444
shell: bash
4545
run: |
4646
mkdir $RUNNER_TEMP/android
4747
tar -C $RUNNER_TEMP/android -xf cross-build/${{ inputs.triplet }}/dist/*
4848
4949
- name: Tests
50-
if: runner.os == "Linux"
50+
if: runner.os == 'Linux'
5151
shell: bash
5252
run: |
5353
$RUNNER_TEMP/android/android.py test --managed maxVersion -v -- \

0 commit comments

Comments
 (0)