Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andremion committed Dec 18, 2024
1 parent 9d82371 commit 1175292
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sdk-size-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Calculate current branch SDK size
run: |
./gradlew :stream-chat-android-client:assembleDebug
PR_SDK_SIZE=$(du -k stream-chat-android-client/build/outputs/aar/stream-chat-android-client-develop.aar | cut -f1)
PR_SDK_SIZE=$(du -k stream-chat-android-client/build/outputs/aar/stream-chat-android-client-debug.aar | cut -f1)
echo "PR_SDK_SIZE=$PR_SDK_SIZE" >> $GITHUB_ENV
- name: Post comment on PR
Expand All @@ -37,7 +37,7 @@ jobs:
const commentBody = `
## SDK Size Comparison
| Component | Develop | PR | Diff |
| Component | Before | After | Diff |
|-|-|-|-|
| stream-chat-android-client | ${developSdkSize} KB | ${prSdkSize} KB | ${prSdkSize - developSdkSize} KB |
`;
Expand Down

0 comments on commit 1175292

Please sign in to comment.