Build server prototype (integration with GitHub / NuGet / etc)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
"use strict";
|
|
|
|
|
|
|
|
import conditional from "./conditional";
|
|
|
|
|
|
|
|
export default ((params, processor) => conditional({
|
|
|
|
branch: "master",
|
|
|
|
otherwise: {
|
|
|
|
name: "nuget-pack",
|
|
|
|
params: {
|
|
|
|
major: params.major,
|
|
|
|
name: params.nuspecName,
|
|
|
|
nuspec: `${params.nuspecName}.nuspec`,
|
|
|
|
version: params.version,
|
|
|
|
withoutCommitSha: params.withoutCommitSha,
|
|
|
|
},
|
|
|
|
type: "dotnetnugetpack",
|
|
|
|
},
|
|
|
|
owner: params.masterRepoOwner,
|
|
|
|
task: {
|
|
|
|
name: "nuget-push",
|
|
|
|
params: {
|
|
|
|
major: params.major,
|
|
|
|
name: params.nuspecName,
|
|
|
|
nuspec: `${params.nuspecName}.nuspec`,
|
|
|
|
version: params.version,
|
|
|
|
withoutCommitSha: params.withoutCommitSha,
|
|
|
|
},
|
|
|
|
type: "dotnetnugetpush",
|
|
|
|
},
|
|
|
|
}, processor)) as Task;
|