-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jackkray
committed
Dec 11, 2024
1 parent
5c6db32
commit 7612d40
Showing
6 changed files
with
92 additions
and
18 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
40 changes: 40 additions & 0 deletions
40
.github/workflows/health-sdk.alternative.version.check.yml
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,40 @@ | ||
name: Build Health SDK alternative version | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
workflow_call: | ||
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD: | ||
required: true | ||
|
||
jobs: | ||
build-example-app: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
- name: build unique release example app for QA | ||
run: > | ||
./gradlew health-sdk:example-app:assembleUniqueQaRelease | ||
-PclientId="gini-mobile-test" | ||
-PclientSecret="${{ secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}" | ||
-PreleaseKeystoreFile="health_sdk_example.jks" | ||
-PreleaseKeystorePassword='${{ secrets.HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}' | ||
-PreleaseKeyAlias="health_sdk_example" | ||
-PreleaseKeyPassword='${{ secrets.HEALTH_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}' | ||
- name: archive unique release example app for QA | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: health-sdk-example-app-qaUnique-release | ||
path: health-sdk/example-app/build/outputs/apk/qaUnique/release |
40 changes: 40 additions & 0 deletions
40
.github/workflows/merchant-sdk.alternative.version.artifact.yml
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,40 @@ | ||
name: Check Merchant SDK alternative version | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
workflow_call: | ||
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
MERCHANT_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD: | ||
required: true | ||
|
||
jobs: | ||
build-example-app: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
cache: 'gradle' | ||
|
||
- name: build release example app for QA | ||
run: > | ||
./gradlew merchant-sdk:example-app:assembleQaRelease | ||
-PclientId="gini-mobile-test" | ||
-PclientSecret="${{ secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}" | ||
-PreleaseKeystoreFile="merchant_sdk_example.jks" | ||
-PreleaseKeystorePassword='${{ secrets.MERCHANT_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}' | ||
-PreleaseKeyAlias="merchant_sdk_example" | ||
-PreleaseKeyPassword='${{ secrets.MERCHANT_SDK_EXAMPLE_APP_KEYSTORE_PASSWORD }}' | ||
- name: archive release example app for QA | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: merchant-sdk-example-app-qaUnique-release | ||
path: merchant-sdk/example-app/build/outputs/apk/qaUnique/release |
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