Skip to content

Commit

Permalink
Tools: Trying to fix Lerna publishing with automation token
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Nov 3, 2021
1 parent 74fcd47 commit cb26ab4
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,24 @@ const gulp = require('gulp');
const utils = require('./packages/tools/gulp/utils');

const tasks = {
// copyLib: require('./packages/tools/gulp/tasks/copyLib'),
// tsc: require('./packages/tools/gulp/tasks/tsc'),
updateIgnoredTypeScriptBuild: require('./packages/tools/gulp/tasks/updateIgnoredTypeScriptBuild'),
buildCommandIndex: require('./packages/tools/gulp/tasks/buildCommandIndex'),
// deleteBuildDirs: require('./packages/tools/gulp/tasks/deleteBuildDirs'),
completePublishAll: {
fn: async () => {
// await utils.execCommandVerbose('git pull');

await utils.execCommandVerbose('git', ['add', '-A']);
await utils.execCommandVerbose('git', ['commit', '-m', 'Releasing sub-packages']);
await utils.execCommandVerbose('lerna', ['publish', 'from-package', '-y']);

// Lerna does some unnecessary auth check that doesn't work with
// automation tokens, thus the --no-verify-access. Automation token
// is still used for access when publishing even with this flag
// (publishing would fail otherwise).
// https://github.com/lerna/lerna/issues/2788
await utils.execCommandVerbose('lerna', ['publish', 'from-package', '-y', '--no-verify-access']);

await utils.execCommandVerbose('git', ['push']);
},
},
};

utils.registerGulpTasks(gulp, tasks);

// gulp.task('build', gulp.series('copyLib', 'tsc', 'updateIgnoredTypeScriptBuild'));

// // The clean task removes build directories and copy back the library. This is useful
// // when switching from one branch to another.
// gulp.task('clean', gulp.series('deleteBuildDirs', 'copyLib'));

0 comments on commit cb26ab4

Please sign in to comment.