-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (25 loc) · 766 Bytes
/
action.yml
File metadata and controls
27 lines (25 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: 'Verify Android Keystore'
description: 'Verifies the validity of an Android Keystore file, its password, and a specific key alias.'
author: 'Appegy'
branding:
icon: 'shield'
color: 'green'
inputs:
keystore-path:
description: 'Path to the keystore file. Required if keystore-base64 is not provided.'
required: false
keystore-base64:
description: 'Base64 encoded content of the keystore. Required if keystore-path is not provided.'
required: false
keystore-password:
description: 'Password for the keystore.'
required: true
alias-name:
description: 'Alias name to verify.'
required: true
alias-password:
description: 'Password for the alias.'
required: true
runs:
using: 'node24'
main: 'dist/index.js'