From 2a945234216e309c8d8abed60bb962427e744e53 Mon Sep 17 00:00:00 2001 From: Yogesh Choudhary Paliyal Date: Sun, 21 Apr 2024 14:41:28 +0530 Subject: [PATCH] Update README.md --- README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/README.md b/README.md index 75d58d6..550acdb 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,43 @@ Upload Android AAB file to Indus App Store. ``` + +## Get App Versions + +#### Inputs + +| name | description | +|------------------|-----------------------------------------------------------------------------------------------------------------------------------------| +| type | GET_APP_STATS | +| apiKey | API Key for Indus App Store, you can get it from Indus AppStore DevTools page | +| packageName | Package Name of the App | + +#### Output + +| name | description | +|------------------|-----------------------------------------------------------------------------------------------------------------------------------------| +| result | Get App Detail as description | + + + +#### Example + +```yaml + - name: Get App Stats From Indus App Store + id: upload-indus-app-store + uses: yogeshpaliyal/upload-indus-appstore@ + with: + type: "GET_APP_VERSIONS" + apiKey: ${{secrets.INDUS_API_KEY}} + packageName: com.yogeshpaliyal.keypass + + - name: Print Output + id: output + run: echo ${{ steps.upload-indus-app-store.outputs.result }} +``` + + + ### Open for Contribution If you have any idea or want to contribute to this action, feel free to open an issue or PR.