diff --git a/packages/shipjs/src/step/push.js b/packages/shipjs/src/step/push.js index 96bb3c23..9f8b2769 100644 --- a/packages/shipjs/src/step/push.js +++ b/packages/shipjs/src/step/push.js @@ -2,5 +2,5 @@ import runStep from './runStep'; export default ({ dir, dryRun }) => runStep({ title: 'Pushing to remote.' }, ({ run }) => { - run('git pull', dir, dryRun); + run('git push', dir, dryRun); });