Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Version Code #822

Merged
merged 2 commits into from
Apr 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- uses: actions/checkout@v2
name: Clone repository

- name: Prepare Java 11
- name: Prepare Java 15
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 15
java-package: jdk+fx

- name: Cache Gradle packages
Expand All @@ -32,8 +32,7 @@ jobs:
- name: Build project
run: |
if ${{ !!github.head_ref }}; then echo "::warning:: Gradle $WARN_ON_PR"; fi
gradle wrapper
bash gradlew build
./gradlew build

- name: Upload articact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
targetSdkVersion 29
versionCode(getTimeStamp.call() as int)
// versionName format: major.minor.accumulation.commit_id
versionName "0.8.17" + (getGitHeadRefsSuffix.call() as String)
versionName "0.8.18" + (getGitHeadRefsSuffix.call() as String)
multiDexEnabled false
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
Expand Down