MCPcopy Index your code
hub / github.com/nodejs/node / RunStep

Method RunStep

deps/v8/tools/release/auto_push.py:67–82  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

65 MESSAGE = "Creating release if specified."
66
67 def RunStep(self):
68 print("Creating release for %s." % self["candidate"])
69
70 args = [
71 "--author", self._options.author,
72 "--reviewer", self._options.reviewer,
73 "--revision", self["candidate"],
74 "--force",
75 ]
76
77 if self._options.work_dir:
78 args.extend(["--work-dir", self._options.work_dir])
79
80 if self._options.push:
81 self._side_effect_handler.Call(
82 create_release.CreateRelease().Run, args)
83
84
85class AutoPush(ScriptsBase):

Callers

nothing calls this directly

Calls 3

printFunction · 0.50
extendMethod · 0.45
CallMethod · 0.45

Tested by

no test coverage detected