Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andremion committed Dec 20, 2024
1 parent 764fe70 commit ebd98ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-sdk-sizes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ jobs:
# Update README.md
for module in $MODULES; do
size=$(jq --arg module "$module" '.release.[$module]' stream-chat-android.json)
size=$(jq --arg module "$module" '.release[$module]' stream-chat-android.json)
badgeUrl="https://img.shields.io/badge/${module//-/--}-$size%20KB-lightgreen"
sed -i "s|!\[${module}\]\(.*\)|![${module}](${badgeUrl})|" README.md
sed -i "s|!\[$module\](.*)|![$module](${badgeUrl})|" README.md
done
- name: Commit and Push README
Expand Down

0 comments on commit ebd98ba

Please sign in to comment.