Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests-ui-critical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
script: echo "Generated AVD snapshot for caching."

- name: Download APK artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Artifact Download Path Issue

The actions/download-artifact action was updated to v6, which changed its default behavior. Without the path parameter, artifacts now download into a subdirectory named after the artifact. This causes the subsequent adb install command to fail, as it expects the APK directly in the current directory.

Fix in Cursor Fix in Web

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think it still works

with:
name: ${{env.APK_ARTIFACT_NAME}}

Expand Down
Loading