JFrog · Arazzo Workflow

JFrog Deploy and Verify Artifact

Version 1.0.0

Deploy an artifact to a repository and confirm its storage metadata.

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

Provider

jfrog

Workflows

deploy-and-verify-artifact
Deploy an artifact and verify it landed in storage.
Uploads an artifact to the given repository path, then fetches the file info from storage to confirm the deployment and capture its checksums.
2 steps inputs: content, itemPath, repoKey, sha256 outputs: downloadUri, sha256, size
1
deploy
Deploy the artifact binary to the repository path, supplying the optional SHA256 checksum header for integrity validation.
2
verifyStorage
Read the file info from storage to confirm the artifact was persisted and capture its checksums.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: JFrog Deploy and Verify Artifact
  summary: Deploy an artifact to a repository and confirm its storage metadata.
  description: >-
    The core publish flow for Artifactory. The workflow deploys a binary
    artifact to a repository path, then reads the file storage info back to
    confirm the artifact landed with the expected checksums and size. 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
sourceDescriptions:
- name: artifactsStorageApi
  url: ../openapi/jfrog-artifacts-storage-api-openapi.yml
  type: openapi
workflows:
- workflowId: deploy-and-verify-artifact
  summary: Deploy an artifact and verify it landed in storage.
  description: >-
    Uploads an artifact to the given repository path, then fetches the file info
    from storage to confirm the deployment and capture its checksums.
  inputs:
    type: object
    required:
    - repoKey
    - itemPath
    - content
    properties:
      repoKey:
        type: string
        description: The repository key to deploy the artifact into.
      itemPath:
        type: string
        description: The path within the repository for the artifact.
      content:
        type: string
        description: The raw artifact content to deploy.
      sha256:
        type: string
        description: Optional SHA256 checksum header for the artifact.
  steps:
  - stepId: deploy
    description: >-
      Deploy the artifact binary to the repository path, supplying the optional
      SHA256 checksum header for integrity validation.
    operationId: deployArtifact
    parameters:
    - name: repoKey
      in: path
      value: $inputs.repoKey
    - name: itemPath
      in: path
      value: $inputs.itemPath
    - name: X-Checksum-Sha256
      in: header
      value: $inputs.sha256
    requestBody:
      contentType: application/octet-stream
      payload: $inputs.content
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      downloadUri: $response.body#/downloadUri
      deployedPath: $response.body#/path
  - stepId: verifyStorage
    description: >-
      Read the file info from storage to confirm the artifact was persisted and
      capture its checksums.
    operationId: getStorageInfo
    parameters:
    - name: repoKey
      in: path
      value: $inputs.repoKey
    - name: itemPath
      in: path
      value: $inputs.itemPath
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      size: $response.body#/size
      sha256: $response.body#/checksums/sha256
      downloadUri: $response.body#/downloadUri
  outputs:
    downloadUri: $steps.verifyStorage.outputs.downloadUri
    size: $steps.verifyStorage.outputs.size
    sha256: $steps.verifyStorage.outputs.sha256

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-deploy-and-verify-artifact-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.