File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ exports.cleanTree = async () => {
37
37
* Returns the tagged commits
38
38
*/
39
39
exports . commitAndTag = async updatedVersions => {
40
- await exec ( 'git add */package.json' ) ;
40
+ await exec ( 'git add */package.json yarn.lock ' ) ;
41
41
42
42
let result = await exec (
43
43
`git commit -m "Publish firebase@${ updatedVersions . firebase } "`
@@ -63,7 +63,7 @@ exports.pushUpdatesToGithub = async tags => {
63
63
currentBranch = currentBranch . trim ( ) ;
64
64
65
65
await exec ( `git push origin ${ currentBranch } --no-verify -u` , { cwd : root } ) ;
66
- await exec ( `git push origin ${ tags . join ( ' ' ) } ` ) ;
66
+ await exec ( `git push origin ${ tags . join ( ' ' ) } --no-verify` , { cwd : root } ) ;
67
67
} ;
68
68
69
69
exports . resetWorkingTree = async ( ) => {
You can’t perform that action at this time.
0 commit comments