Skip to content

Commit 69c9a97

Browse files
committed
Fix issues that arose in latest release flow
1 parent 6aed77a commit 69c9a97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release/utils/git.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ exports.cleanTree = async () => {
3737
* Returns the tagged commits
3838
*/
3939
exports.commitAndTag = async updatedVersions => {
40-
await exec('git add */package.json');
40+
await exec('git add */package.json yarn.lock');
4141

4242
let result = await exec(
4343
`git commit -m "Publish firebase@${updatedVersions.firebase}"`
@@ -63,7 +63,7 @@ exports.pushUpdatesToGithub = async tags => {
6363
currentBranch = currentBranch.trim();
6464

6565
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 });
6767
};
6868

6969
exports.resetWorkingTree = async () => {

0 commit comments

Comments
 (0)