Przejdź do treści

Azure Pipelines CI/CD

Pipeline Structure

Build → Test → Deploy

Środowiska

  • Testing (DE/AT)
  • Staging (DE/AT)
  • Production (DE/AT)

Przykład pipeline

stages:
  - stage: Build
    jobs:
      - job: BuildFrontend
        steps:
          - script: npm install
          - script: npm run build:prod-de

  - stage: Deploy
    jobs:
      - deployment: DeployProduction
        environment: 'Production-DE'

Dalsze zasoby