-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
24 lines (22 loc) · 900 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: "Upload Android App(.apk) Release to Amazon Appstore"
description: "GitHub Action for uploading Android APK files to Amazon Appstore. Handles authentication, edit creation, and APK replacement."
author: "AmeyaJain-25"
branding:
icon: "upload-cloud"
color: "blue"
inputs:
client_id:
description: "Amazon AppStore Application Client ID obtained from the Amazon Developer Console"
required: true
client_secret:
description: "Amazon AppStore Application Client Secret obtained from the Amazon Developer Console"
required: true
app_id:
description: "Amazon AppStore Application ID (the unique identifier for your app in the Amazon AppStore)"
required: true
apk_release_file:
description: "Relative path to the Android APK release file (e.g., 'app/build/outputs/apk/release/app-release.apk')"
required: true
runs:
using: node20
main: "dist/index.js"