mirror of
https://github.com/seepine/action-miniprogram-ci.git
synced 2025-04-05 03:41:40 +08:00
15 lines
364 B
TypeScript
15 lines
364 B
TypeScript
import {CiOption} from '../type'
|
|
import * as core from '@actions/core'
|
|
|
|
export const getArgs = (option: CiOption): string[] => {
|
|
const args = []
|
|
if (option.version) {
|
|
args.push(...[' --app-version', `'${option.version}'`])
|
|
}
|
|
if (option.desc) {
|
|
args.push(...['--app-changelog', `'${option.desc}'`])
|
|
}
|
|
core.debug(args.toString())
|
|
return args
|
|
}
|