(repoPath, { branch })
| 107 | } |
| 108 | |
| 109 | async function push(repoPath, { branch }) { |
| 110 | console.log('pushing commit'); |
| 111 | |
| 112 | try { |
| 113 | await execa('git', ['push', '--force', 'origin', branch], { cwd: repoPath }); |
| 114 | } catch (e) { |
| 115 | // branch may not exist yet |
| 116 | await execa('git', ['push', '-u', 'origin', branch], { cwd: repoPath }); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | async function updateOnlineEditorRepos(tag) { |
| 121 | let infos = await determineOutputs(tag); |
no outgoing calls
no test coverage detected
searching dependent graphs…