Skip to content

Commit

Permalink
Merge branch 'rewrite/clean-code-arc-mvvm+i' of github.com:mitai-app/…
Browse files Browse the repository at this point in the history
…Mi-Android into rewrite/clean-code-arc-mvvm+i
  • Loading branch information
Mr-Smithy-x committed Mar 14, 2024
2 parents 376ef85 + 98ef03e commit 4da0051
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Android CI

on:
push:
branches: [ main ]
branches: [ main, rewrite/clean-code-arc-mvvm+i ]
pull_request:
branches: [ main ]

Expand All @@ -13,14 +13,20 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: set up JDK 11
- name: set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Create file
run: cat ./app/google-services.json | base64
- name: Putting data
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $DATA > ./app/google-services.json
- name: Build with Gradle
run: ./gradlew build

0 comments on commit 4da0051

Please sign in to comment.