---
description: Use Azure DevOps to build your web assets and create bundles on Capawesome Cloud using the Capawesome CLI.
title: Integrate Capawesome Cloud with Azure DevOps - Capawesome
image: https://capawesome.io/docs/assets/images/social/cloud/live-updates/integrations/azure-devops.png
---

[ Skip to content](#azure-devops) 

[ 🎉 Introducing **Capawesome Platform** — one platform for Live Updates, Native Builds, App Store Publishing, and Insider SDKs.](https://capawesome.io) 

* [  Formbricks ](/docs/plugins/formbricks/)
* [  Geocoder ](/docs/plugins/geocoder/)
* [  Google Sign-In ](/docs/plugins/google-sign-in/)
* [  Grafana Faro ](/docs/plugins/grafana-faro/)
* [  libSQL ](/docs/plugins/libsql/)
* [  Live Update ](/docs/plugins/live-update/)
* [  Managed Configurations ](/docs/plugins/managed-configurations/)
* [  Media Session ](/docs/plugins/media-session/)
* [  ML Kit ](/docs/plugins/mlkit/)
* [  Navigation Bar ](/docs/plugins/navigation-bar/)
* [  NFC ](/docs/plugins/nfc/)
* [  OAuth ](/docs/plugins/oauth/)
* [  Pedometer ](/docs/plugins/pedometer/)
* [  Photo Editor ](/docs/plugins/photo-editor/)
* [  PostHog ](/docs/plugins/posthog/)
* [  Printer ](/docs/plugins/printer/)
* [  Purchases ](/docs/plugins/purchases/)
* [  RealtimeKit ](/docs/plugins/realtimekit/)
* [  Screen Orientation ](/docs/plugins/screen-orientation/)
* [  Screenshot ](/docs/plugins/screenshot/)
* [  Secure Preferences ](/docs/plugins/secure-preferences/)
* [  Speech Recognition ](/docs/plugins/speech-recognition/)
* [  Speech Synthesis ](/docs/plugins/speech-synthesis/)
* [  Share Target ](/docs/plugins/share-target/)
* [  Square Mobile Payments ](/docs/plugins/square-mobile-payments/)
* [  SQLite ](/docs/plugins/sqlite/)
* [  Superwall ](/docs/plugins/superwall/)
* [  Torch ](/docs/plugins/torch/)
* [  Wifi ](/docs/plugins/wifi/)
* [  Zip ](/docs/plugins/zip/)
* [  Cloud ](/docs/cloud/)
* [  Live Updates ](/docs/cloud/live-updates/)
* Advanced
* Integrations
* [  Pipeline ](#pipeline)
* [  Bitbucket Pipelines ](/docs/cloud/live-updates/integrations/bitbucket-pipelines/)
* [  GitHub Actions ](/docs/cloud/live-updates/integrations/github-actions/)
* [  GitLab CI/CD ](/docs/cloud/live-updates/integrations/gitlab-ci/)
* [  Native Builds ](/docs/cloud/native-builds/)
* [  Configuration ](/docs/cloud/native-builds/configuration/)
* [  Environments ](/docs/cloud/native-builds/environments/)
* Guides
* [  Sample Projects ](/docs/cloud/native-builds/sample-projects/)
* [  Troubleshooting ](/docs/cloud/native-builds/troubleshooting/)
* [  Automations ](/docs/cloud/automations/)
* [  Assist ](/docs/cloud/assist/)
* Account
* Organizations
* [  Organization and User Management ](/docs/cloud/organizations/memberships/)
* [  Single Sign-On (SSO) ](/docs/cloud/organizations/sso/)
* [  Teams ](/docs/cloud/organizations/teams/)
* [  Two-Factor Authentication ](/docs/cloud/organizations/two-factor-authentication/)
* [  Integrations ](/docs/cloud/integrations/)
* [  License Keys ](/docs/cloud/license-keys/)
* [  Webhooks ](/docs/cloud/webhooks/)
* [  Pricing ](https://capawesome.io/pricing/)
* [  FAQ ](/docs/cloud/faq/)
* [  Support ](/docs/cloud/support/)
* [  Contributing ](/docs/contributing/)
* [  LLMs ](/docs/llms/)
* [  Insiders ](/docs/insiders/)
* [  License ](https://capawesome.io/legal/eula/)
* [  Support ](/docs/insiders/support/)
* [  FAQ ](/docs/insiders/faq/)
* [  Blog ](/blog/)
* Categories

* [  Pipeline ](#pipeline)

# Azure DevOps[¶](#azure-devops "Permanent link")

You can easily publish Live Updates to Capawesome Cloud using [Azure Pipelines](https://azure.microsoft.com/de-de/products/devops/pipelines). In this guide, we will show you how to create a Azure pipeline that builds your web assets and creates a bundle on Capawesome Cloud using the [Capawesome CLI](/docs/cloud/cli/).

## Preparation[¶](#preparation "Permanent link")

Before you start, make sure you have a Capawesome Cloud account and an app set up. Next, you need to create a Capawesome Cloud token and add it to your Azure Pipeline as a secure variable.

### Create a Capawesome Cloud token[¶](#create-a-capawesome-cloud-token "Permanent link")

Create a new Capawesome Cloud token via the [Capawesome Cloud Console](https://console.cloud.capawesome.io/settings/tokens). Just navigate to the `Tokens` page in the settings and click on the `Create Token` button. Choose a name for the token and click on the `Create` button. The token is now copied to your clipboard.

### Create a Azure Pipeline Variable[¶](#create-a-azure-pipeline-variable "Permanent link")

Add the Capawesome Cloud token to your Azure Pipeline as a secure variable with the name `CAPAWESOME_CLOUD_TOKEN` as described in [Set secret variables](https://learn.microsoft.com/en-us/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch#secret-variables).

## Pipeline[¶](#pipeline "Permanent link")

### Create the Pipeline[¶](#create-the-pipeline "Permanent link")

Create a new Azure Pipeline file in your repository under `azure-pipelines.yml` with the following content:

`[](#%5F%5Fcodelineno-0-1)trigger: none
[](#%5F%5Fcodelineno-0-2)
[](#%5F%5Fcodelineno-0-3)parameters:
[](#%5F%5Fcodelineno-0-4)  - name: channel
[](#%5F%5Fcodelineno-0-5)    displayName: Channel
[](#%5F%5Fcodelineno-0-6)    type: string
[](#%5F%5Fcodelineno-0-7)
[](#%5F%5Fcodelineno-0-8)pool:
[](#%5F%5Fcodelineno-0-9)  vmImage: ubuntu-latest
[](#%5F%5Fcodelineno-0-10)
[](#%5F%5Fcodelineno-0-11)jobs:
[](#%5F%5Fcodelineno-0-12)- job: Deploy
[](#%5F%5Fcodelineno-0-13)  displayName: Build web assets
[](#%5F%5Fcodelineno-0-14)  steps:
[](#%5F%5Fcodelineno-0-15)  - checkout: self
[](#%5F%5Fcodelineno-0-16)    displayName: Checkout
[](#%5F%5Fcodelineno-0-17)  - task: UseNode@1
[](#%5F%5Fcodelineno-0-18)    inputs:
[](#%5F%5Fcodelineno-0-19)      version: 20.x
[](#%5F%5Fcodelineno-0-20)    displayName: Install Node.js
[](#%5F%5Fcodelineno-0-21)  - script: npm ci
[](#%5F%5Fcodelineno-0-22)    displayName: Install Dependencies
[](#%5F%5Fcodelineno-0-23)  - script: npm run build
[](#%5F%5Fcodelineno-0-24)    displayName: Build web assets
[](#%5F%5Fcodelineno-0-25)  - script: npm install -g @capawesome/cli@latest
[](#%5F%5Fcodelineno-0-26)    displayName: Install Capawesome CLI
[](#%5F%5Fcodelineno-0-27)  - script: npx @capawesome/cli apps:channels:create --app-id 00000000-0000-0000-0000-000000000000 --name $env:CHANNEL --ignore-errors
[](#%5F%5Fcodelineno-0-28)    displayName: Create a channel on Capawesome Cloud
[](#%5F%5Fcodelineno-0-29)    env:
[](#%5F%5Fcodelineno-0-30)      CAPAWESOME_CLOUD_TOKEN: $(CAPAWESOME_CLOUD_TOKEN)
[](#%5F%5Fcodelineno-0-31)      CHANNEL: ${{ parameters.channel }}
[](#%5F%5Fcodelineno-0-32)  - script: npx @capawesome/cli apps:liveupdates:upload --app-id 00000000-0000-0000-0000-000000000000 --channel $env:CHANNEL --path dist
[](#%5F%5Fcodelineno-0-33)    displayName: Create a bundle on Capawesome Cloud
[](#%5F%5Fcodelineno-0-34)    env:
[](#%5F%5Fcodelineno-0-35)      CAPAWESOME_CLOUD_TOKEN: $(CAPAWESOME_CLOUD_TOKEN)
[](#%5F%5Fcodelineno-0-36)      CHANNEL: ${{ parameters.channel }}
`

This pipeline will build your web assets, log in to Capawesome Cloud, create a channel (if it does not exist yet), and create a bundle for the specified channel.

### Trigger the Pipeline[¶](#trigger-the-pipeline "Permanent link")

You can then trigger the pipeline manually by running it in the Azure Pipelines UI or by using the Azure Pipelines API. You will be prompted to enter the channel name. Of course, you can also trigger the pipeline automatically by specifying a different trigger.

January 24, 2026 

 Back to top 