Skip to content

Commit

Permalink
fix versionCode replacement (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebino committed Aug 17, 2023
1 parent d1c8521 commit 35d7b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:
- name: Set versionCode to git count
run: |
export versionCode=$(git rev-list --first-parent --count HEAD)
sed -i -d "s/versionCode = 999/versionCode = $versionCode/g" app/build.gradle.kts
sed -i "s/versionCode = 999/versionCode = $versionCode/g" app/build.gradle.kts
- name: Build release bundle
run: |
Expand Down

0 comments on commit 35d7b1f

Please sign in to comment.