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.
30 lines
872 B
30 lines
872 B
"use strict";
|
|
|
|
const conditional = require("./conditional");
|
|
|
|
module.exports = (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);
|
|
|