UNPKG

@lamantin/fastpush

Version:

Typed fastlane frontend for pushing builds to store

10 lines (8 loc) 134 B
import { exec } from 'shelljs' /** * Push code and tags */ export function push() { exec('git push') exec('git push --tags') }