release-please 17.5.0 → 17.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/index.d.ts +1 -1
- package/build/src/index.js +1 -1
- package/build/src/local-github.js +4 -2
- package/package.json +1 -1
package/build/src/index.d.ts
CHANGED
package/build/src/index.js
CHANGED
|
@@ -36,6 +36,6 @@ Object.defineProperty(exports, "GitHub", { enumerable: true, get: function () {
|
|
|
36
36
|
exports.configSchema = require('../../schemas/config.json');
|
|
37
37
|
exports.manifestSchema = require('../../schemas/manifest.json');
|
|
38
38
|
// x-release-please-start-version
|
|
39
|
-
exports.VERSION = '17.5.
|
|
39
|
+
exports.VERSION = '17.5.1';
|
|
40
40
|
// x-release-please-end
|
|
41
41
|
//# sourceMappingURL=index.js.map
|
|
@@ -564,7 +564,9 @@ class LocalGitHub {
|
|
|
564
564
|
await fs.promises.writeFile(msgFile, message);
|
|
565
565
|
await execFile('git', ['add', '.'], { cwd: this.cloneDir });
|
|
566
566
|
try {
|
|
567
|
-
await execFile('git', ['commit', '-F', msgFile], {
|
|
567
|
+
await execFile('git', ['commit', '--no-verify', '-F', msgFile], {
|
|
568
|
+
cwd: this.cloneDir,
|
|
569
|
+
});
|
|
568
570
|
}
|
|
569
571
|
catch (err) {
|
|
570
572
|
const error = err;
|
|
@@ -579,7 +581,7 @@ class LocalGitHub {
|
|
|
579
581
|
await fs.promises.unlink(msgFile).catch(() => { });
|
|
580
582
|
}
|
|
581
583
|
// Push transit
|
|
582
|
-
await execFile('git', ['push', '-f', 'origin', branch], {
|
|
584
|
+
await execFile('git', ['push', '--no-verify', '-f', 'origin', branch], {
|
|
583
585
|
cwd: this.cloneDir,
|
|
584
586
|
});
|
|
585
587
|
}
|