Share via

deploy on Azure google cloud

Thibaut Fabrice 0 Reputation points
2026-05-03T09:20:17.1+00:00

put on Azure.

How the link.start already add Github link its a python link any deploy

User's image

Azure App Service
Azure App Service

Azure App Service is a service used to create and deploy scalable, mission-critical web apps.


1 answer

Sort by: Most helpful
  1. AI answer

    2026-05-03T09:20:36.65+00:00

    To deploy the Python app from the GitHub repository shown in the screenshot to the existing Azure App Service (POS), use GitHub Actions from the Deployment Center.

    1. In Azure portal, open the POS Web App.
    2. In the left menu, under Deployment, select Deployment Center.
    3. In Source, select GitHub. Keep GitHub Actions as the build provider.
    4. Sign in to GitHub and authorize Azure if prompted.
    5. Select the Organization (GitHub account), then select the Repository that contains the Python app (for example, the pos_v3_mauritius repo in the screenshot).
    6. Select the correct Branch that should be deployed (for example, main or another branch that has the Python code).
    7. Keep the option to Add a workflow enabled.
    8. For Authentication type, select User-assigned identity (or the default option offered in the portal).
    9. Select Save.

    Azure App Service will commit a workflow file into the GitHub repository under .github/workflows. Every time code is pushed to the selected branch, GitHub Actions will build and deploy the Python app automatically to the POS Web App.

    To monitor the deployment:

    1. In Deployment Center, select Logs.
    2. Open the latest run and then Build/Deploy Logs to go to GitHub and see the GitHub Actions run. Wait until the run completes successfully; then browse to the POS site URL shown in the Web App overview.

    If deployment issues occur, use the troubleshooting guidance for Python on App Service referenced below.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.