UNPKG

semantic-release-nuget

Version:

A semantic-release plugin for building and publishing NuGet packages.

76 lines 3.57 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.publish = void 0; const options_1 = require("./options"); const child = __importStar(require("child_process")); function publish(options, config) { return __awaiter(this, void 0, void 0, function* () { // Resolve the options and make sure we have them all populated. const resolved = options_1.resolveOptions(options, config); // Set up debugging. const { logger } = config; const debug = resolved.debug ? logger.debug : () => { }; logger.debug = debug; // We need to clean and rebuild. logger.info("Running the dotnet clean command"); const clean = child.spawnSync("dotnet", ["clean"]); if (clean.status !== 0) { throw new Error("Cannot run `dotnet clean`\n\n" + clean.stdout.toString()); } // We need to clean and rebuild. logger.info("Running the dotnet build command"); const build = child.spawnSync("dotnet", ["build"]); if (build.status !== 0) { throw new Error("Cannot run `dotnet build`\n\n" + build.stdout.toString()); } // Run the pack commands. logger.info("Running the dotnet pack command"); const pack = child.spawnSync("dotnet", ["pack"].concat(resolved.packArguments)); if (pack.status !== 0) { throw new Error("Cannot run `dotnet pack`\n\n" + pack.stdout.toString()); } // Run the push commands. logger.info("Running the dotnet nuget push command"); const push = child.spawnSync("dotnet", ["nuget", "push"] .concat(resolved.pushFiles) .concat([ "--api-key", resolved.apiKey, "--source", resolved.pushUrl, ])); if (push.status !== 0) { throw new Error("Cannot run `dotnet nuget push`\n\n" + push.stdout.toString()); } }); } exports.publish = publish; //# sourceMappingURL=publish.js.map