We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30623b0 commit 6e7ea52Copy full SHA for 6e7ea52
1 file changed
.github/workflows/flix_sample.yml
@@ -65,7 +65,7 @@ jobs:
65
java-version: 21
66
67
- name: Create AVD
68
- id: test-action-1
+ id: create
69
uses: ndtp/android-avd-manager-action@main
70
with:
71
avd-name: baz
@@ -78,7 +78,7 @@ jobs:
78
uses: ndtp/enable-kvm-action@v1
79
80
- name: Launch and configure emulator
81
- id: test-action-2
+ id: launch
82
uses: ndtp/android-emulator-runner@main
83
84
@@ -93,7 +93,7 @@ jobs:
93
run: adb devices
94
95
- name: Kill Emulator
96
- run: adb -s emulator-5554 emu kill
+ run: adb -s emulator-${{ steps.launch.outputs.emulator-port }} emu kill
97
98
99
# - name: Download app apk
0 commit comments