We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dde397 commit 712b585Copy full SHA for 712b585
1 file changed
samples/build.ts
@@ -71,21 +71,6 @@ export async function run() {
71
console.log("repo", lastDef.repository.name);
72
newDef.repository = lastDef.repository;
73
74
- let steps: bi.BuildDefinitionStep[] = [];
75
- phase.steps.forEach((step: bi.BuildDefinitionStep) => {
76
- console.log("adding step", step.displayName);
77
- steps.push(step);
78
- });
79
-
80
- let newProcess = {
81
- type: 1, /* Designer */
82
- phases: [
83
- {
84
- steps: steps
85
- }
86
- ]
87
- } as bi.DesignerProcess;
88
89
newDef.comment = "copy of definition from sample";
90
newDef.buildNumberFormat = lastDef.buildNumberFormat;
91
0 commit comments