From 51f62ff602fc48b863e5815a6df04cb68306afaa Mon Sep 17 00:00:00 2001 From: John Knox Date: Mon, 24 Feb 2020 02:15:24 -0800 Subject: [PATCH] Fix artifact path in android-sample.yml (#820) Summary: This workflow is currently building the android app and then trying to upload the mac app (which isn't built) which is failing. I think it should be uploading the android app instead. Pull Request resolved: https://github.com/facebook/flipper/pull/820 Reviewed By: passy Differential Revision: D20035055 Pulled By: jknoxville fbshipit-source-id: 08367d464a045b47cf1b8b5395fd2151793a23cf --- .github/workflows/android-sample.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android-sample.yml b/.github/workflows/android-sample.yml index f52b46d47..b640481af 100644 --- a/.github/workflows/android-sample.yml +++ b/.github/workflows/android-sample.yml @@ -19,4 +19,4 @@ jobs: uses: actions/upload-artifact@v1 with: name: sample-app.apk - path: dist/Flipper-mac.zip + path: android/sample/build/outputs/apk/debug/sample-debug.apk