Skip to content

Commit

Permalink
Merge pull request #156 from Semper-Viventem/master
Browse files Browse the repository at this point in the history
Release 0.26.4-beta
  • Loading branch information
Semper-Viventem authored Aug 21, 2024
2 parents f143c1d + 5855288 commit f83b5ff
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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 .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 22
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '22'
java-version: '21'
distribution: 'oracle'
cache: gradle

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 22
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '22'
java-version: '21'
distribution: 'oracle'
cache: gradle

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 22
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '22'
java-version: '21'
distribution: 'oracle'
cache: gradle

Expand Down
6 changes: 3 additions & 3 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 = 1708536358
versionName = "0.26.2-beta"
versionCode = 1708536360
versionName = "0.26.4-beta"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -220,6 +220,6 @@ enum class JavaConfig(val jvmTarget: String, val jdkVersion: Int, val javaVersio
}
}

private val DEFAULT = JAVA_22
private val DEFAULT = JAVA_21
}
}

0 comments on commit f83b5ff

Please sign in to comment.