Skip to content

Commit

Permalink
Fix Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Semper-Viventem committed Aug 21, 2024
1 parent fd89cd9 commit 5855288
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/publish-release-apk/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

ls -a
git config --global --add safe.directory /github/workspace
hub checkout ${${REPO_BRANCH}:-master}
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}
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdk = 29
targetSdk = 35

versionCode = 1708536359
versionName = "0.26.3-beta"
versionCode = 1708536360
versionName = "0.26.4-beta"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit 5855288

Please sign in to comment.