-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'an/develop' into an/refactor/pokemon-detail-koin-migration
- Loading branch information
Showing
11 changed files
with
334 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name: Android PR Builder | |
on: | ||
pull_request: | ||
branches: [ an/develop ] | ||
workflow_call: | ||
|
||
defaults: | ||
run: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
name: Android Release New Version 🎉 | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
|
||
jobs: | ||
CI_Android_Release: | ||
uses: ./.github/workflows/Android_Release_CI.yml | ||
secrets: inherit | ||
|
||
Distribution_To_PlayStore: | ||
name: CD Release Builder | ||
runs-on: ubuntu-latest | ||
needs: [ CI_Android_Release ] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: show github pull request | ||
run: echo ${{ github.event.pull_request.title }} | ||
|
||
- name: Gradle cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
|
||
- name: Create Google-Services.json | ||
env: | ||
GOOGLE_SERVICES_ALPHA: ${{ secrets.GOOGLE_SERVICES_ALPHA }} | ||
GOOGLE_SERVICES_BETA: ${{ secrets.GOOGLE_SERVICES_BETA }} | ||
GOOGLE_SERVICES: ${{ secrets.GOOGLE_SERVICES }} | ||
run: | | ||
touch ./app/src/debug/google-services.json | ||
touch ./app/src/alpha/google-services.json | ||
touch ./app/src/beta/google-services.json | ||
mkdir ./app/src/release | ||
touch ./app/src/release/google-services.json | ||
echo $GOOGLE_SERVICES_ALPHA >> ./app/src/debug/google-services.json | ||
echo $GOOGLE_SERVICES_ALPHA >> ./app/src/alpha/google-services.json | ||
echo $GOOGLE_SERVICES_BETA >> ./app/src/beta/google-services.json | ||
echo $GOOGLE_SERVICES >> ./app/src/release/google-services.json | ||
cat ./app/src/debug/google-services.json | ||
working-directory: android | ||
|
||
- name: Create Local Properties | ||
run: touch local.properties | ||
working-directory: android | ||
|
||
- name: Access Local Properties | ||
env: | ||
POKE_BASE_URL: ${{ secrets.POKE_BASE_URL }} | ||
# POKE_DEV_BASE_URL: ${{ secrets.HOST_RELEASE_URI }} | ||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} | ||
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | ||
run: | | ||
echo POKE_BASE_URL=\"${{ secrets.POKE_BASE_URL }}\" >> local.properties | ||
echo STORE_PASSWORD= $STORE_PASSWORD >> local.properties | ||
echo KEY_PASSWORD= $KEY_PASSWORD >> local.properties | ||
echo KEY_ALIAS= $KEY_ALIAS >> local.properties | ||
working-directory: android | ||
|
||
- name: Create RELEASE Key Store | ||
env: | ||
KEY_STORE: ${{secrets.RELEASE_KEY_STORE}} | ||
run: | | ||
touch ./keystore/poke_key.keystore | ||
echo "$KEY_STORE" | base64 -d > ./keystore/poke_key.keystore | ||
working-directory: android | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
working-directory: android | ||
|
||
- name: Build Release APK | ||
run: ./gradlew assembleRelease | ||
working-directory: android | ||
|
||
- name: Upload Release Build to Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: release-artifacts | ||
path: android/app/build/outputs/apk/release/ | ||
if-no-files-found: error | ||
|
||
- name: Create Github Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
generate_release_notes: true | ||
files: | | ||
android/app/build/outputs/apk/release/app-release.apk | ||
- name: Build release aab | ||
run: ./gradlew bundleRelease | ||
working-directory: android | ||
|
||
- name: Upload artifact to Google Play Store | ||
uses: r0adkll/upload-google-play@v1 | ||
with: | ||
serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }} | ||
releaseFiles: android/app/build/outputs/bundle/release/app-release.aab | ||
packageName: poke.rogue.helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: Android PR Builder | ||
|
||
on: | ||
push: | ||
branches: [ "an/release*" ] | ||
workflow_call: | ||
|
||
jobs: | ||
ktlintCheck: | ||
name: ktLint Check | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run ktLint Check | ||
uses: ./.github/actions/ktlint_check | ||
with: | ||
POKE_BASE_URL: ${{ secrets.POKE_BASE_URL }} | ||
|
||
testReleaseUnitTest: | ||
name: CI Release Builder | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Gradle cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 17 | ||
|
||
- name: Create Google-Services.json | ||
env: | ||
GOOGLE_SERVICES_ALPHA: ${{ secrets.GOOGLE_SERVICES_ALPHA }} | ||
GOOGLE_SERVICES_BETA: ${{ secrets.GOOGLE_SERVICES_BETA }} | ||
GOOGLE_SERVICES: ${{ secrets.GOOGLE_SERVICES }} | ||
run: | | ||
touch ./app/src/debug/google-services.json | ||
touch ./app/src/alpha/google-services.json | ||
touch ./app/src/beta/google-services.json | ||
mkdir ./app/src/release | ||
touch ./app/src/release/google-services.json | ||
echo $GOOGLE_SERVICES_ALPHA >> ./app/src/debug/google-services.json | ||
echo $GOOGLE_SERVICES_ALPHA >> ./app/src/alpha/google-services.json | ||
echo $GOOGLE_SERVICES_BETA >> ./app/src/beta/google-services.json | ||
echo $GOOGLE_SERVICES >> ./app/src/release/google-services.json | ||
cat ./app/src/debug/google-services.json | ||
working-directory: android | ||
|
||
- name: Create Local Properties | ||
run: touch local.properties | ||
working-directory: android | ||
|
||
- name: Access Local Properties | ||
env: | ||
POKE_BASE_URL: ${{ secrets.POKE_BASE_URL }} | ||
# POKE_DEV_BASE_URL: ${{ secrets.HOST_RELEASE_URI }} | ||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }} | ||
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.KEY_ALIAS }} | ||
run: | | ||
echo POKE_BASE_URL=\"${{ secrets.POKE_BASE_URL }}\" >> local.properties | ||
echo STORE_PASSWORD= $STORE_PASSWORD >> local.properties | ||
echo KEY_PASSWORD= $KEY_PASSWORD >> local.properties | ||
echo KEY_ALIAS= $KEY_ALIAS >> local.properties | ||
working-directory: android | ||
|
||
- name: Create RELEASE Key Store | ||
env: | ||
KEY_STORE: ${{secrets.RELEASE_KEY_STORE}} | ||
run: | | ||
touch ./keystore/poke_key.jks | ||
echo "$KEY_STORE" | base64 -d > ./keystore/poke_key.jks | ||
working-directory: android | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
working-directory: android | ||
|
||
- name: Unit Test Release | ||
run: ./gradlew testReleaseUnitTest | ||
working-directory: android |
Oops, something went wrong.