JFrog · Arazzo Workflow

JFrog Release Bundle v2 Promote

Version 1.0.0

Create a v2 release bundle from a build and promote it to an environment.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply ChainArazzoWorkflows

Provider

jfrog

Workflows

promote-release-bundle-v2
Create a v2 release bundle from a build and promote it.
Creates a release bundle v2 from a build, promotes it to the target environment, then polls promotion status until it is no longer in progress.
3 steps inputs: buildName, buildNumber, bundleName, bundleVersion, environment outputs: bundleName, currentEnvironment
1
createBundle
Create a v2 release bundle sourced from the supplied build.
2
promote
Promote the release bundle to the target environment.
3
pollPromotion
Poll the promotion status. While the latest promotion is in progress, loop back and check again; otherwise finish.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: JFrog Release Bundle v2 Promote
  summary: Create a v2 release bundle from a build and promote it to an environment.
  description: >-
    The Release Lifecycle Management promotion flow. The workflow creates a v2
    release bundle sourced from a build, promotes it to a target environment,
    then polls the promotion status until it completes. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-4210.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4210.30
      capability_name: Release Engineering Management
      spec: jfrog-release-bundles-v1-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: promotionApi
  url: ../openapi/jfrog-promotion-api-openapi.yml
  type: openapi
- name: releaseBundlesV1Api
  url: ../openapi/jfrog-release-bundles-v1-api-openapi.yml
  type: openapi
workflows:
- workflowId: promote-release-bundle-v2
  summary: Create a v2 release bundle from a build and promote it.
  description: >-
    Creates a release bundle v2 from a build, promotes it to the target
    environment, then polls promotion status until it is no longer in progress.
  inputs:
    type: object
    required:
    - bundleName
    - bundleVersion
    - buildName
    - buildNumber
    - environment
    properties:
      bundleName:
        type: string
        description: The release bundle name.
      bundleVersion:
        type: string
        description: The release bundle version.
      buildName:
        type: string
        description: The source build name.
      buildNumber:
        type: string
        description: The source build number.
      environment:
        type: string
        description: The target environment to promote to (e.g. DEV, STAGING, PROD).
  steps:
  - stepId: createBundle
    description: >-
      Create a v2 release bundle sourced from the supplied build.
    operationId: createReleaseBundle
    requestBody:
      contentType: application/json
      payload:
        release_bundle_name: $inputs.bundleName
        release_bundle_version: $inputs.bundleVersion
        source_type: builds
        source:
          builds:
          - name: $inputs.buildName
            number: $inputs.buildNumber
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      name: $response.body#/name
      version: $response.body#/version
  - stepId: promote
    description: >-
      Promote the release bundle to the target environment.
    operationId: promoteReleaseBundle
    requestBody:
      contentType: application/json
      payload:
        release_bundle_name: $inputs.bundleName
        release_bundle_version: $inputs.bundleVersion
        environment: $inputs.environment
        overwrite_existing_artifacts: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      promotionId: $response.body#/promotion_id
  - stepId: pollPromotion
    description: >-
      Poll the promotion status. While the latest promotion is in progress, loop
      back and check again; otherwise finish.
    operationId: getPromotionStatus
    parameters:
    - name: name
      in: path
      value: $steps.createBundle.outputs.name
    - name: version
      in: path
      value: $steps.createBundle.outputs.version
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      currentEnvironment: $response.body#/current_environment
      promotions: $response.body#/promotions
    onSuccess:
    - name: inProgress
      type: goto
      stepId: pollPromotion
      criteria:
      - context: $response.body
        condition: $.promotions[0].status == 'IN_PROGRESS'
        type: jsonpath
    - name: settled
      type: end
      criteria:
      - context: $response.body
        condition: $.promotions[0].status != 'IN_PROGRESS'
        type: jsonpath
  outputs:
    bundleName: $steps.createBundle.outputs.name
    currentEnvironment: $steps.pollPromotion.outputs.currentEnvironment

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/jfrog-release-bundle-v2-promote-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.