argumentBuilder property

  1. @override
List<String> get argumentBuilder
override

Builds the command arguments list (not used for GitHub API).

GitHub publisher uses direct API calls rather than external commands, so this method returns an empty list. The publishing workflow is handled entirely through the publish() method using HTTP requests.

Returns empty list as GitHub operations are API-based.

Implementation

@override
List<String> get argumentBuilder => [];
set argumentBuilder (List<String> value)
inherited

Raw list of command-line arguments before variable processing.

Subclasses should populate this list with the appropriate arguments for their specific job type.

Implementation

List<String> argumentBuilder = [];