Skip to content

Commit

Permalink
Merge pull request #162 from cuappdev/justin/playstore-publish
Browse files Browse the repository at this point in the history
Justin/playstore publish
  • Loading branch information
thisjustin123 authored Oct 3, 2024
2 parents d2c86be + 2ae4637 commit 91f9ee2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish-to-play-store-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: wrapper
cache-read-only: false

- name: Create secrets.properties
run: |
echo "${{ secrets.SECRETS_PROPERTIES }}" > secrets.properties
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/publish-to-play-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Java 8
- name: Set up Java 17
uses: actions/setup-java@v3
with:
java-version: '8'
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: wrapper
cache-read-only: false

- name: Create secrets.properties
run: |
echo "${{ secrets.SECRETS_PROPERTIES }}" > secrets.properties
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {
applicationId "com.cornellappdev.android.eatery"
minSdk 28
targetSdk 34
versionCode 69
versionCode 70
versionName "blue-1.0.1-crashfix"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ kotlin.code.style=official
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
org.gradle.caching=true
org.gradle.configuration-cache=true

0 comments on commit 91f9ee2

Please sign in to comment.