Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Latest commit

 

History

History
41 lines (30 loc) · 843 Bytes

File metadata and controls

41 lines (30 loc) · 843 Bytes

Strapi plugin strapi-plugin-azure-pipeline

A strapi plugin to rebuild and deploy your SSG website via Azure Pipeline.

This plugin is inspired by strapi-plugin-update-static-content

Setup

# npm
npm install strapi-plugin-azure-pipeline

# yarn
yarn strapi-plugin-azure-pipeline

# pnpm
pnpm install strapi-plugin-azure-pipeline

Configure

// config/plugins.ts

export default () => ({
  ...

  "azure-pipeline": {
    enabled: true,
    config: {
      organization: env("AZURE_DEVOPS_ORGANIZATION"),
      project: env("AZURE_DEVOPS_PROJECT"),
      pipelineId: env("AZURE_DEVOPS_PIPELINE_ID"),
      branch: env("AZURE_DEVOPS_BRANCH"),
      personalAccessToken: env("AZURE_DEVOPS_PERSONAL_ACCESS_TOKEN"),
    },
  },

  ...
});