Jaydeepsinh
Jaydeepsinh

Reputation: 113

Azure devops for Python

I am trying to create an azure ci/cd pipeline for my python application. I have tried many ways but not get success. I can create CI successfully even in some cases cd also but not able to see the output on the azure app service.

I use Linux app services that use the Python 3.7 version.

I can create ci-cd successfully using the YAML file but I want to create using the classic editor without YAML, as I have some restrictions using yaml.

Upvotes: 2

Views: 1481

Answers (1)

Doris Lv
Doris Lv

Reputation: 3398

I will post the steps I deploy a simple hello world project with DevOps CI/CD pipeline.

1. Create pipeline: enter image description here enter image description here enter image description here 2. Create Release pipeline: enter image description here enter image description here 3. Save and queue your pipeline, the release pipeline would be triggered. Here is the file structure on Azure KUDU: enter image description here

Upvotes: 2

Related Questions