Skip to content

Commit

Permalink
vx: temporarily disable pushing to latest branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Dec 24, 2021
1 parent 8f006ce commit ed8eaad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vx/commands/release.js
@@ -1,4 +1,4 @@
const pushToLatestBranch = require('../scripts/release/steps/pushToLatestBranch');
// const pushToLatestBranch = require('../scripts/release/steps/pushToLatestBranch');

const logger = require('vx/logger');
const packagesToRelease = require('vx/scripts/release/packagesToRelease');
Expand Down Expand Up @@ -31,8 +31,9 @@ async function releaseAll() {

if (!isReleaseBranch) {
logger.info(`❌ Not in release branch. Not pushing changes to git.`);
return;
// return;
}

pushToLatestBranch();
// TODO: add this back after the major release. First I want to handle the changelog manually.
// pushToLatestBranch();
}

0 comments on commit ed8eaad

Please sign in to comment.