@lamantin/fastpush
Version:
Typed fastlane frontend for pushing builds to store
13 lines • 312 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.push = void 0;
const shelljs_1 = require("shelljs");
/**
* Push code and tags
*/
function push() {
shelljs_1.exec('git push');
shelljs_1.exec('git push --tags');
}
exports.push = push;
//# sourceMappingURL=push.js.map