Parallel Works

pw marketplace update

Update a marketplace item's metadata

Synopsis

Updates only the fields whose flags are passed. The visibility flags (--platform, --partner, --organization, --group) are the exception: passing any of them replaces the item's visibility as a whole, so include every audience the item should keep.

pw marketplace update <slug> [flags]

Examples

  pw marketplace update --name "New Name" my-workflow
  
  # Make an item visible to the whole platform
  pw marketplace update --platform my-workflow
  
  # Make an item private again
  pw marketplace update --platform=false --partner=false --organization=false --group= my-workflow

Options

      --description string   Short summary of the item
      --featured             Mark as featured (platform admins only)
      --group strings        Make the item visible to a group (repeatable)
  -h, --help                 help for update
      --markdown string      Path to a markdown file used as the item readme
      --name string          Display name on the marketplace
      --organization         Make the item visible to the publisher's organization
  -o, --output string        Output format (json)
      --partner              Make the item visible to partner organizations
      --platform             Make the item visible to all platform users
      --published-as-org     Publish under the organization display name (org admins only)
      --slug string          New URL-friendly identifier
      --verified             Mark as verified (platform admins only)

Options inherited from parent commands

      --context string         The context to use. Overrides PW_CONTEXT environment variable and current context from config.
      --platform-host string   The Parallel Works ACTIVATE platform host to use. Will override any other platform host settings.
  -v, --verbose                Enable verbose logging

SEE ALSO