-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from opensrp/setup-release-ci
add release.yml file
- Loading branch information
Showing
4 changed files
with
107 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# This workflow will build a Java project with Gradle | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: APK Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- v[0-9]+.[0-9]+.[0-9]+ | ||
- v[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+ | ||
- v[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+-[0-9a-zA-Z]+ | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel previous workflow runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Decode Keystore file | ||
run: echo $ENCODED_KEYSTORE | base64 -di > "${HOME}"/ba.keystore.jks | ||
env: | ||
ENCODED_KEYSTORE: ${{ secrets.KEYSTORE_FILE }} | ||
|
||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Decode & Generate keystore.properties file | ||
run: echo $KEYSTORE_PROPERTIES | base64 -di > keystore.properties | ||
env: | ||
KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }} | ||
|
||
- name: Decode google-services.json | ||
env: | ||
FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }} | ||
run: echo $FIREBASE_CONFIG > opensrp-chw-hf/google-services.json | ||
|
||
- name: Generate AAB (Android App Bundle) file | ||
run: ./gradlew :opensrp-chw-hf:bundleRelease -x :opensrp-chw-hf:testDebugUnitTest --stacktrace | ||
|
||
- name: Upload AAB file to tag assets | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: opensrp-chw-hf/build/outputs/bundle/release/opensrp-chw-hf-release.aab | ||
asset_name: "opensrp-chw-hf-$tag.aab" | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: Generate APK (Android App PacKage) file | ||
run: ./gradlew :opensrp-chw-hf:assembleRelease -x :opensrp-chw-hf:testDebugUnitTest --stacktrace | ||
|
||
- name: Upload APK file to tag assets | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: opensrp-chw-hf/build/outputs/apk/release/opensrp-chw-hf-release.apk | ||
asset_name: "opensrp-chw-hf-$tag.apk" | ||
tag: ${{ github.ref }} | ||
prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') }} | ||
overwrite: true |
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 |
---|---|---|
|
@@ -19,3 +19,4 @@ project.properties | |
.settings | ||
build/ | ||
jacoco.exec | ||
keystore.properties |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
ext.props = new Properties() | ||
|
||
//KEYSTORE CREDENTIALS | ||
def keystoreAuthArray = ["KEYSTORE_ALIAS", "KEY_PASSWORD", "KEYSTORE_PASSWORD"] | ||
if (rootProject.file("keystore.properties").exists()) { | ||
props.load(rootProject.file("keystore.properties").newDataInputStream()) | ||
|
||
keystoreAuthArray.each { arrayProp -> project.ext.set(arrayProp, props.getProperty(arrayProp, "sample")) | ||
} | ||
} else { | ||
println("keystore.properties does not exist. The following values are required " + keystoreAuthArray.join(", ")) | ||
keystoreAuthArray.each { arrayProp -> project.ext.set(arrayProp, props.getProperty(arrayProp, "sample_" + arrayProp)) | ||
} | ||
} |