Skip to content

Commit d112d4e

Browse files
committed
Fix
1 parent 7dfec75 commit d112d4e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/cd-android-live-update.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ jobs:
6565
NEXT_PUBLIC_SUPABASE_INSTANCE_ID: ${{ secrets.NEXT_PUBLIC_SUPABASE_INSTANCE_ID }}
6666
NEXT_PUBLIC_SUPABASE_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_KEY }}
6767
CAPAWESOME_TOKEN: ${{ secrets.CAPAWESOME_TOKEN }}
68-
commitMessage: $(git log -1 --pretty=format:"%s")
6968
commitRef: ${{ github.head_ref || github.ref_name }}
7069
commitSha: ${{ github.sha }}
7170
run: yarn android-live-update

scripts/android_live_update.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ yarn build-web-view
99
echo npx @capawesome/cli apps:bundles:create \
1010
--app-id 969bc540-8077-492f-8403-b554bee5de50 \
1111
--channel default \
12-
--commitMessage $commitMessage \
12+
--commitMessage $(git log -1 --pretty=format:"%s") \
1313
--commitRef $commitRef \
1414
--commitSha $commitSha \
1515
--path web/out
1616

1717
npx @capawesome/cli apps:bundles:create \
1818
--app-id 969bc540-8077-492f-8403-b554bee5de50 \
1919
--channel default \
20-
--commitMessage $commitMessage \
20+
--commitMessage $(git log -1 --pretty=format:"%s") \
2121
--commitRef $commitRef \
2222
--commitSha $commitSha \
2323
--path web/out

0 commit comments

Comments
 (0)