Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 2.36 KB

powershell-deploy-github.md

File metadata and controls

47 lines (31 loc) · 2.36 KB
title description tags ms.assetid ms.topic ms.date ms.custom
PowerShell: Deploy code from GitHub
Learn how to use Azure PowerShell to automate deployment and management of App Service. This sample shows how to deploy code from GitHub.
azure-service-management
0f9c8bc5-3789-4eb3-8deb-ae6e2200795a
sample
03/20/2017
mvc, devx-track-azurepowershell

Create a web app and deploy code from GitHub

This sample script creates a web app in App Service with its related resources, and then deploys your web app code from a public GitHub repository (without continuous deployment). For GitHub deployment with continuous deployment, see Create a web app with continuous deployment from GitHub.

If needed, install the Azure PowerShell using the instruction found in the Azure PowerShell guide, and then run Connect-AzAccount to create a connection with Azure. Also, you need a link to GitHub repository that contains the web app code.

Sample script

[!INCLUDE updated-for-az]

[!code-azurepowershell-interactivemain]

Clean up deployment

After the script sample has been run, the following command can be used to remove the resource group, web app, and all related resources.

Remove-AzResourceGroup -Name myResourceGroup -Force

Script explanation

This script uses the following commands. Each command in the table links to command specific documentation.

Command Notes
New-AzResourceGroup Creates a resource group in which all resources are stored.
New-AzAppServicePlan Creates an App Service plan.
New-AzWebApp Creates a web app.
Set-AzResource Modifies a resource in a resource group.

Next steps

For more information on the Azure PowerShell module, see Azure PowerShell documentation.

Additional Azure PowerShell samples for Azure App Service Web Apps can be found in the Azure PowerShell samples.