From 9fd6400a648fe28e874cfc750756063228d51085 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 20 Aug 2024 18:37:28 -0700 Subject: [PATCH] Fix Github Action --- .github/actions/publish-release-apk/entrypoint.sh | 2 +- app/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/publish-release-apk/entrypoint.sh b/.github/actions/publish-release-apk/entrypoint.sh index 110cc0b..477ff0c 100644 --- a/.github/actions/publish-release-apk/entrypoint.sh +++ b/.github/actions/publish-release-apk/entrypoint.sh @@ -4,4 +4,4 @@ ls -a git config --global --add safe.directory /github/workspace hub checkout ${REPO_BRANCH:-master} VERSION_NAME=`grep -oP 'versionName = "\K(.*?)(?=")' ./${APP_FOLDER}/build.gradle.kts` -hub release create -a ./${APP_FOLDER}/build/outputs/apk/${BUILD_FLAVOR}/${BUILD_TYPE}/*-${BUILD_TYPE}.apk -m "${RELEASE_TITLE} - v${VERSION_NAME}" v${VERSION_NAME}${TAG_SUFFIX} +hub release create -t ${REPO_BRANCH:-master} -a ./${APP_FOLDER}/build/outputs/apk/${BUILD_FLAVOR}/${BUILD_TYPE}/*-${BUILD_TYPE}.apk -m "${RELEASE_TITLE} - v${VERSION_NAME}" v${VERSION_NAME}${TAG_SUFFIX} diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 76d20db..8d79109 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -26,8 +26,8 @@ android { minSdk = 29 targetSdk = 35 - versionCode = 1708536360 - versionName = "0.26.4-beta" + versionCode = 1708536361 + versionName = "0.26.5-beta" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"