mirror of
https://github.com/seepine/action-miniprogram-ci.git
synced 2025-04-02 10:00:13 +08:00
29 lines
624 B
TypeScript
29 lines
624 B
TypeScript
/* eslint-disable no-shadow */
|
|
export enum Inputs {
|
|
mode = 'mode',
|
|
type = 'type',
|
|
projectPath = 'project-path',
|
|
privateKey = 'private-key',
|
|
privateKeyPath = 'private-key-path',
|
|
ignores = 'ignores',
|
|
version = 'version',
|
|
desc = 'desc',
|
|
robot = 'robot',
|
|
threads = 'threads',
|
|
// preview input
|
|
qrcodeFormat = 'qrcode-format',
|
|
qrcodeOutputDest = 'qrcode-output-dest',
|
|
pagePath = 'page-path',
|
|
searchQuery = 'search-query',
|
|
scene = 'scene',
|
|
// output
|
|
output = 'output',
|
|
outputPath = 'output-path'
|
|
}
|
|
|
|
export enum Outputs {
|
|
appid = 'appid',
|
|
version = 'version',
|
|
outputPath = 'outputPath'
|
|
}
|