Skip to content

Commit

Permalink
Experiments with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vipulyaara committed Feb 19, 2024
1 parent e058472 commit 909f942
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Create Google Services JSON File
env:
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVCIES_JSON }}
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $GOOGLE_SERVICES_JSON | base64 -di > ./app/google-services.json

- name: Decode Keystore
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
versionCode = 52
versionName = libs.versions.versionname.toString()

val googleServerClientId: String = gradleLocalProperties(rootDir).getProperty("google_server_client_id")
val pipelessAuthToken: String = gradleLocalProperties(rootDir).getProperty("pipeless_auth_token")
val googleServerClientId: String = gradleLocalProperties(rootDir).getProperty("GOOGLE_SERVER_CLIENT_ID")
val pipelessAuthToken: String = gradleLocalProperties(rootDir).getProperty("PIPELESS_AUTH_TOKEN")

buildConfigField("String", "GOOGLE_SERVER_CLIENT_ID", googleServerClientId)
buildConfigField("String", "PIPELESS_AUTH_TOKEN", pipelessAuthToken)
Expand Down

0 comments on commit 909f942

Please sign in to comment.