Files
hex-mines/.github/actions/sign-android-release/action.yml
T
DawnsorrowandCursor 1ae7c24706 Initial Hex Mines fork with hex tiles and mine-count slider.
Based on StefanOltmann/mines (AGPL-3.0): flat-top hex grid, configurable
board size, and a mine-count slider replacing fixed difficulty presets.

Co-authored-by: Cursor <[email protected]>
2026-07-29 07:32:33 -05:00

29 lines
736 B
YAML

name: 'Sign Android release'
description: 'An action to sign an Android release APK or AAB'
author: 'r0adkll'
branding:
icon: 'edit'
color: 'orange'
inputs:
releaseDirectory:
description: 'The directory to find your release to sign'
required: true
signingKeyBase64:
description: 'The key used to sign your release in base64 encoded format'
required: true
alias:
description: 'The key alias'
required: true
keyStorePassword:
description: 'The password to the keystore'
required: true
keyPassword:
description: 'The password for the key'
required: false
outputs:
signedReleaseFile:
description: 'The signed release APK or AAB file'
runs:
using: 'node12'
main: 'lib/main.js'