From 90f40075e8d9ba145934a4a545bbdcc1680742a3 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 21 Dec 2022 13:10:13 +0530 Subject: [PATCH] fix(ci): fix incorrect baseline profile destination --- .github/workflows/baseline-profile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/baseline-profile.yml b/.github/workflows/baseline-profile.yml index 46fdfb74..8be02e3d 100644 --- a/.github/workflows/baseline-profile.yml +++ b/.github/workflows/baseline-profile.yml @@ -73,7 +73,7 @@ jobs: # Pull down any changes which may have been committed while this workflow has been running git pull # Sort the baseline profile, saving it to app/ - sort -o app/src/main/baseline-prof.txt benchmark/build/outputs/baseline-prof/BaselineProfileGenerator_startup-baseline-prof.txt + sort -o android/src/main/baseline-prof.txt benchmark/build/outputs/baseline-prof/BaselineProfileGenerator_startup-baseline-prof.txt # If the baseline profile has changed, commit it if [[ $(git diff --stat app/src/main/baseline-prof.txt) != '' ]]; then git add app/src/main/baseline-prof.txt