-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into hh-reg-location-picker-tests
* main: add docs on tagging (#3089) Constrain isAAB option to Boolean type (#3093) Create manual-apk-release.yml (#3003) Fix setting related entity location on Group member and related resources (#3092) Enhance Image and ActionableButton Widget to add ability to copy text (#3040) Add Related entity location tag on newly created resources via configs (#3086) Spotless clean Fixes config resources flagged for upsync 🐛 Clean up
- Loading branch information
Showing
39 changed files
with
934 additions
and
290 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,112 @@ | ||
name: Manual APK Release | ||
run-name: Generating a FHIR Core Release APK 🚀 | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
buildType: | ||
description: 'Select APK Build Type' | ||
required: true | ||
default: 'Release' | ||
type: choice | ||
options: | ||
- Debug | ||
- DebugNonProxy | ||
- Release | ||
flavor: | ||
description: 'APK flavor e.g. sidBunda' | ||
required: true | ||
isAab: | ||
description: 'For Playstore release only. Generates AAB' | ||
required: true | ||
type: boolean | ||
default: false | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Import Secrets from Vault | ||
id: import-secrets | ||
uses: hashicorp/[email protected] | ||
with: | ||
url: https://vault.onalabs.org | ||
token: ${{ secrets.VAULT_TOKEN }} | ||
# caCertificate: ${{ secrets.VAULT_CA_CERT }} | ||
tlsSkipVerify: true | ||
secrets: | | ||
kv-v2-fhircore/data/fhircore_apk_credentials KEYSTORE_ALIAS | KEYSTORE_ALIAS; | ||
kv-v2-fhircore/data/fhircore_apk_credentials KEYSTORE_FILE | KEYSTORE_FILE; | ||
kv-v2-fhircore/data/fhircore_apk_credentials KEYSTORE_PASSWORD | KEYSTORE_PASSWORD; | ||
kv-v2-fhircore/data/fhircore_apk_credentials KEY_PASSWORD | KEY_PASSWORD; | ||
kv-v2-fhircore/data/fhircore_apk_credentials LOCAL_PROPERTIES_FILE | LOCAL_PROPERTIES_FILE; | ||
- name: Test secret from Vault | ||
id: test-secret | ||
run: | | ||
touch secrets.json | ||
echo '${{ toJson(steps.import-secrets.outputs)}}' >> secrets.json | ||
cat secrets.json | ||
- name: Decode & Generate Keystore file | ||
run: echo $ENCODED_KEYSTORE | base64 -di > "${HOME}"/fhircore.keystore.jks | ||
env: | ||
ENCODED_KEYSTORE: ${{ secrets.KEYSTORE_FILE }} | ||
|
||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
working-directory: android | ||
|
||
- name: Decode & Generate local.properties file | ||
run: echo $LOCAL_PROPERTIES | base64 -di > local.properties | ||
working-directory: android | ||
env: | ||
LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES_FILE }} | ||
|
||
- name: Decode & Generate keystore.properties file | ||
run: echo $KEYSTORE_PROPERTIES | base64 -di > keystore.properties | ||
working-directory: android | ||
env: | ||
KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_FILE }} | ||
|
||
- id: product-flavor | ||
name: Generate Product Flavor identifier | ||
run: | | ||
id=$(echo ${{ github.event.inputs.flavor }}${{ github.event.inputs.buildType }} | tr [:upper:] [:lower:]) | ||
echo "::set-output name=id::$id" | ||
- name: Generate AAB (Android App Bundle) file | ||
if: ${{ github.event.inputs.isAab }} | ||
run: ./gradlew :quest:bundle${{github.event.inputs.flavor}}${{github.event.inputs.buildType}} -x :quest:test${{github.event.inputs.flavor}}${{github.event.inputs.buildType}}DebugUnitTest --stacktrace | ||
working-directory: android | ||
|
||
- name: Upload AAB file to tag assets | ||
if: ${{ github.event.inputs.isAab }} | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: android/quest/build/outputs/bundle/${{steps.product-flavor.outputs.id}}/release/quest-${{steps.product-flavor.outputs.id}}-release.aab | ||
asset_name: "$tag.aab" | ||
tag: ${{ github.ref }} | ||
overwrite: true | ||
|
||
- name: Generate APK (Android App PacKage) file | ||
if: ${{ github.event.inputs.isAab != true }} | ||
run: ./gradlew :quest:assemble${{github.event.inputs.flavor}}${{github.event.inputs.buildType}} -x :quest:test${{github.event.inputs.flavor}}${{github.event.inputs.buildType}}DebugUnitTest --stacktrace | ||
working-directory: android | ||
|
||
- name: Test APK file generation | ||
run: | | ||
ls -lha android/quest/build/outputs/apk/${{steps.product-flavor.outputs.id}}/release/quest-${{steps.product-flavor.outputs.id}}-release.apk --stacktrace | ||
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
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
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
Oops, something went wrong.