Skip to content

Commit fa17dde

Browse files
committed
dataconnect.yml: fix != to == in "Create AVD" if statement
1 parent 8311c5a commit fa17dde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dataconnect.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,15 +146,15 @@ jobs:
146146
avd-cache-zhdsn586je-api${{ env.FDC_ANDROID_EMULATOR_API_LEVEL }}-
147147
148148
- name: Create AVD
149-
if: github.event_name == 'schedule' || steps.restore-avd-cache.outputs.cache-matched-key != ''
149+
if: github.event_name == 'schedule' || steps.restore-avd-cache.outputs.cache-matched-key == ''
150150
uses: reactivecircus/android-emulator-runner@62dbb605bba737720e10b196cb4220d374026a6d #v2.33.0
151151
with:
152152
api-level: ${{ env.FDC_ANDROID_EMULATOR_API_LEVEL }}
153153
arch: x86_64
154154
force-avd-creation: false
155155
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
156156
disable-animations: true
157-
script: 'echo "Generated AVD snapshot for caching: event_name=${{ github.event_name }}, cache-matched-key=${{ steps.restore-avd-cache.outputs.cache-matched-key }}"'
157+
script: 'echo "Generated AVD snapshot for caching; event_name=${{ github.event_name }}, cache-matched-key=${{ steps.restore-avd-cache.outputs.cache-matched-key }}"'
158158

159159
- name: Save AVD cache
160160
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # 4.2.2

0 commit comments

Comments
 (0)