UNPKG

@lamantin/fastpush

Version:

Typed fastlane frontend for pushing builds to store

10 lines (8 loc) 218 B
import { exec } from 'shelljs' export function tag(name: string, description = '') { if (description?.length > 0) { exec(`git tag -a ${name} -m '${description}'`) } else { exec(`git tag -a ${name}`) } }