ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
Monetization
Deploying & Source Control
    Overview
    GitHub
    GitLab
    Bitbucket
    Azure DevOps
      SetupBasic DeploymentDeploy and TestPR Preview EnvironmentsLocal Testing in CITag-Based ReleasesMulti-Stage Deployment
    CircleCI
    Custom CI/CDMonorepo DeploymentRename/Move Project
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Azure DevOps

Azure Pipelines: Tag-Based Releases

Deploy only when tags are pushed for controlled releases.

azure-pipelines.yml
trigger: tags: include: - v* pool: vmImage: ubuntu-latest steps: - task: NodeTool@0 inputs: versionSpec: "20.x" displayName: "Install Node.js" - script: npm install displayName: "Install dependencies" - script: | TAG_NAME=$(echo $(Build.SourceBranch) | sed 's|refs/tags/||') npx zuplo deploy --api-key $(ZUPLO_API_KEY) --environment "$TAG_NAME" displayName: "Deploy with tag name"

This pipeline triggers only on tags matching v* (like v1.0.0) and creates an environment named after the tag.

Next Steps

  • Add multi-stage deployment with approval
Edit this page
Last modified on December 3, 2025
Local Testing in CIMulti-Stage Deployment
On this page
  • Next Steps
YAML