Skip to content

Commit

Permalink
Merge pull request #86 from TimPushkin/updates
Browse files Browse the repository at this point in the history
Prepare for `1.4.1`
  • Loading branch information
TimPushkin authored May 19, 2024
2 parents d25ff70 + e3c0bbe commit df41b45
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 16 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- uses: gradle/actions/setup-gradle@v3

- name: Setup Gradle and build debug
uses: gradle/gradle-build-action@v2
with:
arguments: buildDebug
- name: Build debug
run: ./gradlew buildDebug
11 changes: 4 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin

- uses: gradle/gradle-build-action@v2

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- uses: gradle/actions/setup-gradle@v3

- name: Configure signing
env:
Expand All @@ -38,7 +35,7 @@ jobs:
- name: Create AAB
run: ./gradlew bundleRelease

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: release-files
path: |
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
object Version {
private const val MAJOR = 1
private const val MINOR = 4
private const val PATCH = 0
private const val PATCH = 1

const val CODE = MAJOR * 10000 + MINOR * 100 + PATCH
const val NAME = "$MAJOR.$MINOR.$PATCH"
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit df41b45

Please sign in to comment.