├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ └── yaml-issues.md └── workflows │ ├── autoAssignABTT.yml │ └── stale.yml ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── SECURITY.md ├── design ├── README.md ├── artifacts-in-pipelines.md ├── checkout-path.md ├── controlling-agent-updates.md ├── deployment-strategies.md ├── deployment.md ├── deprecated │ ├── container-steps-implementation.md │ ├── container-steps.md │ └── use-statement.md ├── each-expression.md ├── environment.md ├── images │ ├── environment.png │ ├── jira-traceability-build-1.png │ ├── jira-traceability-build-2.png │ ├── jira-traceability-deploy-1.png │ ├── jira-traceability-deploy-2.png │ ├── pipeline-caching-task-editor.jpg │ └── run-panel-with-params.png ├── jira-traceability.md ├── multi-checkout.md ├── node10-agent-support.md ├── pipeline-artifacts.md ├── pipeline-caching.md ├── pipeline-resources.md ├── pipeline-triggers.md ├── readonly-variables.md ├── runtime-parameters.md ├── sidecar-containers.md ├── step-target-restricted-mode.md ├── step-target.md ├── variables-in-pipelines.md ├── variables.md ├── yaml-principles.md └── yaml-versioning.md └── templates ├── .net-desktop.properties.json ├── .net-desktop.yml ├── android.properties.json ├── android.yml ├── ant.properties.json ├── ant.yml ├── asp.net-core-.net-framework.properties.json ├── asp.net-core-.net-framework.yml ├── asp.net-core-functionapp-to-windows-on-azure.properties.json ├── asp.net-core-functionapp-to-windows-on-azure.yml ├── asp.net-core.properties.json ├── asp.net-core.yml ├── asp.net.properties.json ├── asp.net.yml ├── deploy-to-existing-kubernetes-cluster.properties.json ├── deploy-to-existing-kubernetes-cluster.yml ├── docker-build.properties.json ├── docker-build.yml ├── docker-container-functionapp.properties.json ├── docker-container-functionapp.yml ├── docker-container-to-acr.properties.json ├── docker-container-to-acr.yml ├── docker-container-to-aks.properties.json ├── docker-container-to-aks.yml ├── docker-container-webapp.properties.json ├── docker-container-webapp.yml ├── docker-container.properties.json ├── docker-container.yml ├── empty.properties.json ├── empty.yml ├── gcc.properties.json ├── gcc.yml ├── go.properties.json ├── go.yml ├── gradle.properties.json ├── gradle.yml ├── html.properties.json ├── html.yml ├── icons └── svg │ ├── aks.svg │ ├── android.svg │ ├── angular.svg │ ├── ant.svg │ ├── aspdotnet.svg │ ├── azurecontainerregistry.svg │ ├── cxx.svg │ ├── django.svg │ ├── docker.svg │ ├── dotnet.svg │ ├── dotnetcore.svg │ ├── empty.svg │ ├── functionapp.svg │ ├── golang.svg │ ├── gradle.svg │ ├── grunt.svg │ ├── gulp.svg │ ├── html.svg │ ├── jekyll.svg │ ├── k8s.svg │ ├── maven.svg │ ├── nodejs.svg │ ├── php.svg │ ├── python.svg │ ├── react.svg │ ├── ruby.svg │ ├── universalwindowsplatform.svg │ ├── vue.svg │ ├── webpack.svg │ ├── xamarin.svg │ └── xcode.svg ├── jekyll-container.properties.json ├── jekyll-container.yml ├── maven-webapp-to-linux-on-azure.properties.json ├── maven-webapp-to-linux-on-azure.yml ├── maven.properties.json ├── maven.yml ├── node.js-express-webapp-to-linux-on-azure.properties.json ├── node.js-express-webapp-to-linux-on-azure.yml ├── node.js-functionapp-to-linux-on-azure.properties.json ├── node.js-functionapp-to-linux-on-azure.yml ├── node.js-react-webapp-to-linux-on-azure.properties.json ├── node.js-react-webapp-to-linux-on-azure.yml ├── node.js-with-angular.properties.json ├── node.js-with-angular.yml ├── node.js-with-grunt.properties.json ├── node.js-with-grunt.yml ├── node.js-with-gulp.properties.json ├── node.js-with-gulp.yml ├── node.js-with-react.properties.json ├── node.js-with-react.yml ├── node.js-with-vue.properties.json ├── node.js-with-vue.yml ├── node.js-with-webpack.properties.json ├── node.js-with-webpack.yml ├── node.js.properties.json ├── node.js.yml ├── php-webapp-to-linux-on-azure.properties.json ├── php-webapp-to-linux-on-azure.yml ├── php.properties.json ├── php.yml ├── powershell-functionapp-to-windows-on-azure.properties.json ├── powershell-functionapp-to-windows-on-azure.yml ├── python-django.properties.json ├── python-django.yml ├── python-functionapp-to-linux-on-azure.properties.json ├── python-functionapp-to-linux-on-azure.yml ├── python-package.properties.json ├── python-package.yml ├── python-to-linux-webapp-on-azure.properties.json ├── python-to-linux-webapp-on-azure.yml ├── resources ├── arm │ ├── acr.json │ ├── aks.json │ ├── functionapp.json │ └── webapp-on-containers.json └── k8s │ ├── deployment.yml │ └── service.yml ├── ruby.properties.json ├── ruby.yml ├── universal-windows-platform.properties.json ├── universal-windows-platform.yml ├── xamarin.android.properties.json ├── xamarin.android.yml ├── xamarin.ios.properties.json ├── xamarin.ios.yml ├── xcode.properties.json └── xcode.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/yaml-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/.github/ISSUE_TEMPLATE/yaml-issues.md -------------------------------------------------------------------------------- /.github/workflows/autoAssignABTT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/.github/workflows/autoAssignABTT.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/SECURITY.md -------------------------------------------------------------------------------- /design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/README.md -------------------------------------------------------------------------------- /design/artifacts-in-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/artifacts-in-pipelines.md -------------------------------------------------------------------------------- /design/checkout-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/checkout-path.md -------------------------------------------------------------------------------- /design/controlling-agent-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/controlling-agent-updates.md -------------------------------------------------------------------------------- /design/deployment-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/deployment-strategies.md -------------------------------------------------------------------------------- /design/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/deployment.md -------------------------------------------------------------------------------- /design/deprecated/container-steps-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/deprecated/container-steps-implementation.md -------------------------------------------------------------------------------- /design/deprecated/container-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/deprecated/container-steps.md -------------------------------------------------------------------------------- /design/deprecated/use-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/deprecated/use-statement.md -------------------------------------------------------------------------------- /design/each-expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/each-expression.md -------------------------------------------------------------------------------- /design/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/environment.md -------------------------------------------------------------------------------- /design/images/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/environment.png -------------------------------------------------------------------------------- /design/images/jira-traceability-build-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/jira-traceability-build-1.png -------------------------------------------------------------------------------- /design/images/jira-traceability-build-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/jira-traceability-build-2.png -------------------------------------------------------------------------------- /design/images/jira-traceability-deploy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/jira-traceability-deploy-1.png -------------------------------------------------------------------------------- /design/images/jira-traceability-deploy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/jira-traceability-deploy-2.png -------------------------------------------------------------------------------- /design/images/pipeline-caching-task-editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/pipeline-caching-task-editor.jpg -------------------------------------------------------------------------------- /design/images/run-panel-with-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/images/run-panel-with-params.png -------------------------------------------------------------------------------- /design/jira-traceability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/jira-traceability.md -------------------------------------------------------------------------------- /design/multi-checkout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/multi-checkout.md -------------------------------------------------------------------------------- /design/node10-agent-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/node10-agent-support.md -------------------------------------------------------------------------------- /design/pipeline-artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/pipeline-artifacts.md -------------------------------------------------------------------------------- /design/pipeline-caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/pipeline-caching.md -------------------------------------------------------------------------------- /design/pipeline-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/pipeline-resources.md -------------------------------------------------------------------------------- /design/pipeline-triggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/pipeline-triggers.md -------------------------------------------------------------------------------- /design/readonly-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/readonly-variables.md -------------------------------------------------------------------------------- /design/runtime-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/runtime-parameters.md -------------------------------------------------------------------------------- /design/sidecar-containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/sidecar-containers.md -------------------------------------------------------------------------------- /design/step-target-restricted-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/step-target-restricted-mode.md -------------------------------------------------------------------------------- /design/step-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/step-target.md -------------------------------------------------------------------------------- /design/variables-in-pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/variables-in-pipelines.md -------------------------------------------------------------------------------- /design/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/variables.md -------------------------------------------------------------------------------- /design/yaml-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/yaml-principles.md -------------------------------------------------------------------------------- /design/yaml-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/design/yaml-versioning.md -------------------------------------------------------------------------------- /templates/.net-desktop.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "dotnet" 3 | } 4 | -------------------------------------------------------------------------------- /templates/.net-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/.net-desktop.yml -------------------------------------------------------------------------------- /templates/android.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "android" 3 | } 4 | -------------------------------------------------------------------------------- /templates/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/android.yml -------------------------------------------------------------------------------- /templates/ant.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "ant" 3 | } 4 | -------------------------------------------------------------------------------- /templates/ant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/ant.yml -------------------------------------------------------------------------------- /templates/asp.net-core-.net-framework.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "dotnetcore" 3 | } 4 | -------------------------------------------------------------------------------- /templates/asp.net-core-.net-framework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/asp.net-core-.net-framework.yml -------------------------------------------------------------------------------- /templates/asp.net-core-functionapp-to-windows-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/asp.net-core-functionapp-to-windows-on-azure.properties.json -------------------------------------------------------------------------------- /templates/asp.net-core-functionapp-to-windows-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/asp.net-core-functionapp-to-windows-on-azure.yml -------------------------------------------------------------------------------- /templates/asp.net-core.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "dotnetcore" 3 | } 4 | -------------------------------------------------------------------------------- /templates/asp.net-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/asp.net-core.yml -------------------------------------------------------------------------------- /templates/asp.net.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "aspdotnet" 3 | } 4 | -------------------------------------------------------------------------------- /templates/asp.net.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/asp.net.yml -------------------------------------------------------------------------------- /templates/deploy-to-existing-kubernetes-cluster.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/deploy-to-existing-kubernetes-cluster.properties.json -------------------------------------------------------------------------------- /templates/deploy-to-existing-kubernetes-cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/deploy-to-existing-kubernetes-cluster.yml -------------------------------------------------------------------------------- /templates/docker-build.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-build.properties.json -------------------------------------------------------------------------------- /templates/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-build.yml -------------------------------------------------------------------------------- /templates/docker-container-functionapp.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-functionapp.properties.json -------------------------------------------------------------------------------- /templates/docker-container-functionapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-functionapp.yml -------------------------------------------------------------------------------- /templates/docker-container-to-acr.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-to-acr.properties.json -------------------------------------------------------------------------------- /templates/docker-container-to-acr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-to-acr.yml -------------------------------------------------------------------------------- /templates/docker-container-to-aks.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-to-aks.properties.json -------------------------------------------------------------------------------- /templates/docker-container-to-aks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-to-aks.yml -------------------------------------------------------------------------------- /templates/docker-container-webapp.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-webapp.properties.json -------------------------------------------------------------------------------- /templates/docker-container-webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container-webapp.yml -------------------------------------------------------------------------------- /templates/docker-container.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container.properties.json -------------------------------------------------------------------------------- /templates/docker-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/docker-container.yml -------------------------------------------------------------------------------- /templates/empty.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "empty" 3 | } 4 | -------------------------------------------------------------------------------- /templates/empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/empty.yml -------------------------------------------------------------------------------- /templates/gcc.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "cxx" 3 | } 4 | -------------------------------------------------------------------------------- /templates/gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/gcc.yml -------------------------------------------------------------------------------- /templates/go.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "golang" 3 | } 4 | -------------------------------------------------------------------------------- /templates/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/go.yml -------------------------------------------------------------------------------- /templates/gradle.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "gradle" 3 | } 4 | -------------------------------------------------------------------------------- /templates/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/gradle.yml -------------------------------------------------------------------------------- /templates/html.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "html" 3 | } 4 | -------------------------------------------------------------------------------- /templates/html.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/html.yml -------------------------------------------------------------------------------- /templates/icons/svg/aks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/aks.svg -------------------------------------------------------------------------------- /templates/icons/svg/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/android.svg -------------------------------------------------------------------------------- /templates/icons/svg/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/angular.svg -------------------------------------------------------------------------------- /templates/icons/svg/ant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/ant.svg -------------------------------------------------------------------------------- /templates/icons/svg/aspdotnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/aspdotnet.svg -------------------------------------------------------------------------------- /templates/icons/svg/azurecontainerregistry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/azurecontainerregistry.svg -------------------------------------------------------------------------------- /templates/icons/svg/cxx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/cxx.svg -------------------------------------------------------------------------------- /templates/icons/svg/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/django.svg -------------------------------------------------------------------------------- /templates/icons/svg/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/docker.svg -------------------------------------------------------------------------------- /templates/icons/svg/dotnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/dotnet.svg -------------------------------------------------------------------------------- /templates/icons/svg/dotnetcore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/dotnetcore.svg -------------------------------------------------------------------------------- /templates/icons/svg/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/empty.svg -------------------------------------------------------------------------------- /templates/icons/svg/functionapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/functionapp.svg -------------------------------------------------------------------------------- /templates/icons/svg/golang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/golang.svg -------------------------------------------------------------------------------- /templates/icons/svg/gradle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/gradle.svg -------------------------------------------------------------------------------- /templates/icons/svg/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/grunt.svg -------------------------------------------------------------------------------- /templates/icons/svg/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/gulp.svg -------------------------------------------------------------------------------- /templates/icons/svg/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/html.svg -------------------------------------------------------------------------------- /templates/icons/svg/jekyll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/jekyll.svg -------------------------------------------------------------------------------- /templates/icons/svg/k8s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/k8s.svg -------------------------------------------------------------------------------- /templates/icons/svg/maven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/maven.svg -------------------------------------------------------------------------------- /templates/icons/svg/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/nodejs.svg -------------------------------------------------------------------------------- /templates/icons/svg/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/php.svg -------------------------------------------------------------------------------- /templates/icons/svg/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/python.svg -------------------------------------------------------------------------------- /templates/icons/svg/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/react.svg -------------------------------------------------------------------------------- /templates/icons/svg/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/ruby.svg -------------------------------------------------------------------------------- /templates/icons/svg/universalwindowsplatform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/universalwindowsplatform.svg -------------------------------------------------------------------------------- /templates/icons/svg/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/vue.svg -------------------------------------------------------------------------------- /templates/icons/svg/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/webpack.svg -------------------------------------------------------------------------------- /templates/icons/svg/xamarin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/xamarin.svg -------------------------------------------------------------------------------- /templates/icons/svg/xcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/icons/svg/xcode.svg -------------------------------------------------------------------------------- /templates/jekyll-container.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "jekyll" 3 | } 4 | -------------------------------------------------------------------------------- /templates/jekyll-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/jekyll-container.yml -------------------------------------------------------------------------------- /templates/maven-webapp-to-linux-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/maven-webapp-to-linux-on-azure.properties.json -------------------------------------------------------------------------------- /templates/maven-webapp-to-linux-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/maven-webapp-to-linux-on-azure.yml -------------------------------------------------------------------------------- /templates/maven.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "maven" 3 | } 4 | -------------------------------------------------------------------------------- /templates/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/maven.yml -------------------------------------------------------------------------------- /templates/node.js-express-webapp-to-linux-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-express-webapp-to-linux-on-azure.properties.json -------------------------------------------------------------------------------- /templates/node.js-express-webapp-to-linux-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-express-webapp-to-linux-on-azure.yml -------------------------------------------------------------------------------- /templates/node.js-functionapp-to-linux-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-functionapp-to-linux-on-azure.properties.json -------------------------------------------------------------------------------- /templates/node.js-functionapp-to-linux-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-functionapp-to-linux-on-azure.yml -------------------------------------------------------------------------------- /templates/node.js-react-webapp-to-linux-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-react-webapp-to-linux-on-azure.properties.json -------------------------------------------------------------------------------- /templates/node.js-react-webapp-to-linux-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-react-webapp-to-linux-on-azure.yml -------------------------------------------------------------------------------- /templates/node.js-with-angular.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "angular" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js-with-angular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-with-angular.yml -------------------------------------------------------------------------------- /templates/node.js-with-grunt.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "grunt" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js-with-grunt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-with-grunt.yml -------------------------------------------------------------------------------- /templates/node.js-with-gulp.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "gulp" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js-with-gulp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-with-gulp.yml -------------------------------------------------------------------------------- /templates/node.js-with-react.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "react" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js-with-react.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-with-react.yml -------------------------------------------------------------------------------- /templates/node.js-with-vue.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "vue" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js-with-vue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-with-vue.yml -------------------------------------------------------------------------------- /templates/node.js-with-webpack.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "webpack" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js-with-webpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js-with-webpack.yml -------------------------------------------------------------------------------- /templates/node.js.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "nodejs" 3 | } 4 | -------------------------------------------------------------------------------- /templates/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/node.js.yml -------------------------------------------------------------------------------- /templates/php-webapp-to-linux-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/php-webapp-to-linux-on-azure.properties.json -------------------------------------------------------------------------------- /templates/php-webapp-to-linux-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/php-webapp-to-linux-on-azure.yml -------------------------------------------------------------------------------- /templates/php.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "php" 3 | } 4 | -------------------------------------------------------------------------------- /templates/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/php.yml -------------------------------------------------------------------------------- /templates/powershell-functionapp-to-windows-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/powershell-functionapp-to-windows-on-azure.properties.json -------------------------------------------------------------------------------- /templates/powershell-functionapp-to-windows-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/powershell-functionapp-to-windows-on-azure.yml -------------------------------------------------------------------------------- /templates/python-django.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "django" 3 | } 4 | -------------------------------------------------------------------------------- /templates/python-django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/python-django.yml -------------------------------------------------------------------------------- /templates/python-functionapp-to-linux-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/python-functionapp-to-linux-on-azure.properties.json -------------------------------------------------------------------------------- /templates/python-functionapp-to-linux-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/python-functionapp-to-linux-on-azure.yml -------------------------------------------------------------------------------- /templates/python-package.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "python" 3 | } 4 | -------------------------------------------------------------------------------- /templates/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/python-package.yml -------------------------------------------------------------------------------- /templates/python-to-linux-webapp-on-azure.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/python-to-linux-webapp-on-azure.properties.json -------------------------------------------------------------------------------- /templates/python-to-linux-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/python-to-linux-webapp-on-azure.yml -------------------------------------------------------------------------------- /templates/resources/arm/acr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/resources/arm/acr.json -------------------------------------------------------------------------------- /templates/resources/arm/aks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/resources/arm/aks.json -------------------------------------------------------------------------------- /templates/resources/arm/functionapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/resources/arm/functionapp.json -------------------------------------------------------------------------------- /templates/resources/arm/webapp-on-containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/resources/arm/webapp-on-containers.json -------------------------------------------------------------------------------- /templates/resources/k8s/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/resources/k8s/deployment.yml -------------------------------------------------------------------------------- /templates/resources/k8s/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/resources/k8s/service.yml -------------------------------------------------------------------------------- /templates/ruby.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "ruby" 3 | } 4 | -------------------------------------------------------------------------------- /templates/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/ruby.yml -------------------------------------------------------------------------------- /templates/universal-windows-platform.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "universalwindowsplatform" 3 | } 4 | -------------------------------------------------------------------------------- /templates/universal-windows-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/universal-windows-platform.yml -------------------------------------------------------------------------------- /templates/xamarin.android.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "xamarin" 3 | } 4 | -------------------------------------------------------------------------------- /templates/xamarin.android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/xamarin.android.yml -------------------------------------------------------------------------------- /templates/xamarin.ios.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "xamarin" 3 | } 4 | -------------------------------------------------------------------------------- /templates/xamarin.ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/xamarin.ios.yml -------------------------------------------------------------------------------- /templates/xcode.properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "iconName": "xcode" 3 | } 4 | -------------------------------------------------------------------------------- /templates/xcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-yaml/HEAD/templates/xcode.yml --------------------------------------------------------------------------------