From 35d7b1f7b2eca93938f090fb1a5b3ab2686725ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20St=C3=BCrmer?= Date: Thu, 17 Aug 2023 21:55:14 +0200 Subject: [PATCH] fix versionCode replacement (#147) --- .github/workflows/continuous-delivery-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-delivery-pipeline.yml b/.github/workflows/continuous-delivery-pipeline.yml index 84c0f11..7ce9654 100644 --- a/.github/workflows/continuous-delivery-pipeline.yml +++ b/.github/workflows/continuous-delivery-pipeline.yml @@ -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: |