diff --git a/.github/workflows/cd-android-live-update.yml b/.github/workflows/cd-android-live-update.yml index 7cbdc84..83e4afb 100644 --- a/.github/workflows/cd-android-live-update.yml +++ b/.github/workflows/cd-android-live-update.yml @@ -65,7 +65,6 @@ jobs: NEXT_PUBLIC_SUPABASE_INSTANCE_ID: ${{ secrets.NEXT_PUBLIC_SUPABASE_INSTANCE_ID }} NEXT_PUBLIC_SUPABASE_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_KEY }} CAPAWESOME_TOKEN: ${{ secrets.CAPAWESOME_TOKEN }} - commitMessage: $(git log -1 --pretty=format:"%s") commitRef: ${{ github.head_ref || github.ref_name }} commitSha: ${{ github.sha }} run: yarn android-live-update diff --git a/scripts/android_live_update.sh b/scripts/android_live_update.sh index 28ea8d6..90608cc 100755 --- a/scripts/android_live_update.sh +++ b/scripts/android_live_update.sh @@ -9,7 +9,7 @@ yarn build-web-view echo npx @capawesome/cli apps:bundles:create \ --app-id 969bc540-8077-492f-8403-b554bee5de50 \ --channel default \ - --commitMessage $commitMessage \ + --commitMessage $(git log -1 --pretty=format:"%s") \ --commitRef $commitRef \ --commitSha $commitSha \ --path web/out @@ -17,7 +17,7 @@ echo npx @capawesome/cli apps:bundles:create \ npx @capawesome/cli apps:bundles:create \ --app-id 969bc540-8077-492f-8403-b554bee5de50 \ --channel default \ - --commitMessage $commitMessage \ + --commitMessage $(git log -1 --pretty=format:"%s") \ --commitRef $commitRef \ --commitSha $commitSha \ --path web/out