Deploying Angular to Azure BLOB Storage using Azure DevOps pipelines

Using the Static website feature Azure Storage Account is a cheap and convenient way to quicky deploy an Angular app (or any kind of SPA for that matter). And since I’m creating such a pipeline on a fairly regular basis I though it might come handy share my default approach for doing that.

Basically there are four things to do whenever we want to build & push a new release to the cloud:

  1. Install the required dependencies
  2. Build the Angular app
  3. Remove our currently deployed app
    (this is necessary since our files most likely contain a hash so you can’t just overwrite existing files without having potentially thousands of dead files in your storage account)
  4. Deploy our new build

This script is based on the Azure DevOps suggestions for Angular apps and just adds the deployment logic:

trigger:
– main
pool:
vmImage: ubuntu-latest
steps:
– task: NodeTool@0
inputs:
versionSpec: '14.x'
displayName: 'Install Node.js'
– script: |
npm install -g @angular/cli
npm install
ng build –prod
displayName: 'npm install and build'
– task: AzureCLI@2
displayName: 'Clear Static website'
inputs:
azureSubscription: 'My Subscription'
scriptType: 'bash'
scriptLocation: 'inlineScript'
inlineScript: 'az storage blob delete-batch –account-name mystorageaccount –source "\$web"'
– task: AzureCLI@2
displayName: 'Upload new Static Website'
inputs:
azureSubscription: 'My Subscription'
scriptType: 'bash'
scriptLocation: 'inlineScript'
inlineScript: 'az storage blob upload-batch –account-name mystorageaccount –destination "\$web" –source ''$(Build.Repository.LocalPath)/dist/myappname'''
view raw pipeline.yaml hosted with ❤ by GitHub

Things you’ll need to update so it will work for your project:

  • Azure Subscription for both Azure CLI Tasks (here MySubscription)
    The easiest way to do this is by copying the code into the pipeline editor in Azure DevOps and then opening the edit pane by clicking on settings. This lets you choose from your available subscriptions.
Use the settings feature to easily update the Azure Subscription value inside Azure DevOps
  • Storage Account Name (here mystorageaccount)
  • The Angular app name in the Deployment script’s source path (/dist/myappname)

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.