UiPath Documentation
uipath-cli
latest
false
UiPath-CLI-Benutzerhandbuch
Wichtig :
Dieser Inhalt wurde maschinell übersetzt. Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.

uip maestro flow publish

Syntax and options for `uip maestro flow publish`, which packs a Flow project and uploads the resulting `.nupkg` directly to Orchestrator packages.

uip maestro flow publish packs a Flow project directory and uploads the resulting .nupkg to Orchestrator packages in one step — a shortcut for uip maestro flow pack followed by a manual upload.

Zusammenfassung

uip maestro flow publish <project-path> [output-path] [-n <name>] [-v <version>] [--feed-id <id> | --folder-key <key> | --folder-path <path>]
uip maestro flow publish <project-path> [output-path] [-n <name>] [-v <version>] [--feed-id <id> | --folder-key <key> | --folder-path <path>]

Honors global options. Exit codes follow the standard contract. Requires uip login.

Argumente

  • <project-path> (erforderlich) – Der Pfad zum Flow-Projektverzeichnis (muss project.uiproj und mindestens eine .flow -Datei enthalten).
  • [output-path] (optional) — directory where the generated .nupkg is written before upload. Defaults to a temp directory (<os-tmpdir>/flow-publish-<timestamp>).

Optionen

OptionStandardBeschreibung
-n, --name <name>project folder namePaketname.
-v, --version <version>1.0.0Paketversion
--feed-id <feedId>Mandanten-FeedTarget feed ID. Mutually exclusive with --folder-key/--folder-path.
--folder-key <key>Orchestrator folder key (GUID) whose folder-hierarchy feed to publish into — the CLI resolves the feed ID automatically. Mutually exclusive with --feed-id/--folder-path.
--folder-path <path>Orchestrator folder path, e.g. Shared/Sub — resolved to a feed ID the same way as --folder-key. Mutually exclusive with --feed-id/--folder-key.

Beispiele

# Pack and publish to the tenant feed
uip maestro flow publish ./my-flow-project --version 1.2.0

# Publish into a specific folder's feed
uip maestro flow publish ./my-flow-project --folder-key c3d4e5f6---version 1.2.0
# Pack and publish to the tenant feed
uip maestro flow publish ./my-flow-project --version 1.2.0

# Publish into a specific folder's feed
uip maestro flow publish ./my-flow-project --folder-key c3d4e5f6-… --version 1.2.0

Datenform (--output json)

{
  "Code": "FlowPublish",
  "Data": {
    "Package": "my-flow-project@1.2.0",
    "PackagePath": "/tmp/flow-publish-1710000000000/my-flow-project.flow.Flow.1.2.0.nupkg",
    "Upload": [
      { "key": "my-flow-project.flow.Flow.1.2.0.nupkg", "status": "Created" }
    ]
  }
}
{
  "Code": "FlowPublish",
  "Data": {
    "Package": "my-flow-project@1.2.0",
    "PackagePath": "/tmp/flow-publish-1710000000000/my-flow-project.flow.Flow.1.2.0.nupkg",
    "Upload": [
      { "key": "my-flow-project.flow.Flow.1.2.0.nupkg", "status": "Created" }
    ]
  }
}

Upload[].status is "Created" the first time a given package version is uploaded, or the feed's own conflict status on a repeat upload of the same name/version.

Siehe auch

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben