Click here to Skip to main content
15,881,882 members
Articles / DevOps / Continuous Delivery

Automating Code Deployment with Github and Azure

Rate me:
Please Sign up or sign in to vote.
3.50/5 (6 votes)
6 May 2018CPOL2 min read 13.1K   9   2
Automating code deployment with Github and Azure

Today, we are going to learn how to deploy an ASP.NET Core application in Azure automatically from a Github repository.

Image 1

Requirements

  • Git installed + GitHub account
  • Visual Studio 2015 Update 4 or higher (DotNet Core installed)
  • Azure Subscription (create a free Azure account)

Creating an ASP.NET Core Application

Let's create a simple ASP.NET Core app using Visual Studio so we can deploy it in Azure.

  1. Open Visual Studio and go to File -> New Project -> Visual C# -> Web, then choose ASP.NET Core application (.Net Core Framework).

    Image 2

  2. Choose the Web Application template.

    Image 3

  3. Let's make some changes in Index.chtml file (Views/Home/Index.cshtml):

    Image 4

Uploading the Project to GitHub

Now let's create a new GitHub repository to upload our project.

  1. Go to Github and create a new repository

    Image 5

  2. Open the command line and go to the project directory
  3. Type git init
  4. Then, git add . to add all the project files
  5. git commit -m "First commit"
  6. git remote add origin https://github.com/saibimajdi/GithubAzure.git (change it to your repository)
  7. git push -u origin master

Now our project has been uploaded to GitHub. You can refresh the repository page to check if the project has been uploaded successfully.

Creating Azure Web Application

Now we should create an Azure Web Application to host our project.

  1. Go to http://portal.azure.com and create a new Azure Web App.

    Image 6

  2. Now let's give it a name and fill out the form and click the Create button.

    Image 7

  3. Wait until Azure completes the creation of our application.
  4. Go to Deployment Options.

    Image 8

  5. Choose Github as a source, you can choose any other source such as One Drive, Dropbox or Bitbucket.

    Image 9

  6. Authorize Azure to use your Github account by entering your Github account credentials.

    Image 10

  7. Choose the project repository

    Image 11

  8. Choose the branch, in this case, we have only one branch (master):

    Image 12

  9. Now Azure is building your project to deploy it.

    Image 13

  10. Image 14

Voilà, our application has been deployed in Azure automatically from our Github repository, every time we make new commit to our repository, Azure will take the latest version from the master branch and deploy it.

Image 15

Check out the video to understand more about automating code deployment with Github and Azure.

That's all for this article! I wish that you have learned something new. Feel free to contact me if there are any questions.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Riva CRM Integration
Canada Canada
.NET Developer currently working as a Software Developer with Riva CRM Integration.
Microsoft Certified Solutions Associate for web applications.
Machine Learning fan and bots maker.

Comments and Discussions

 
QuestionCan I deploy WinForm application? Pin
Southmountain2-May-18 16:24
Southmountain2-May-18 16:24 
AnswerRe: Can I deploy WinForm application? Pin
Majdi Saibi3-May-18 8:12
professionalMajdi Saibi3-May-18 8:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.