Automate your Power BI Reports Deployment using Azure DevOps

This article will guide you through the implementation of CI/CD pipelines using Azure DevOps. This will enable you to deploy your local report to your Power BI service automatically. To show you how it works, I will use an extension called Power BI Actions, available for free on the Visual Studio marketplace.

Azure Portal

Create a new app registration

To access Power BI service content and APIs, you need to register an application that will authenticate against your Azure Active Directory. To do so, follow these instructions:

  • Sign in to the Azure portal.
  • Select Azure Active Directory and then App Registration.
  • Click the New Registration.
Automate your Power BI Reports Deployment using Azure DevOps
App registration page
  • Provide a Name that describes your application’s purpose, select a supported Account type, and click on Register.
Automate your Power BI Reports Deployment using Azure DevOps

Once the registration is completed, you will be redirected to the app overview page. Copy the application ID’s value as you will need to specify this later in Azure DevOps.

Automate your Power BI Reports Deployment using Azure DevOps
App Overview page
  • Select Certificate & Secrets tab, generate a new client secret, and copy its value.
Automate your Power BI Reports Deployment using Azure DevOps
Certificates and secrets page

You need to give some permission to your app to conclude the configuration of your application.

  • Click on the App permission tab and then Add a permission.
  • Select Application permissions.
  • Click Power BI services.
  • Check the Tenant.ReadAll and Tenant.ReadWriteAll checkbox.
  • Click add permission to confirm your updates.
API permissions

Power BI

Setting up the tenant

The next step is to configure your Power BI;

  • Sign in to the Power BI portal.
  • Click the gear icon on the top right and select Admin portal.
  • Select the Tenant settings tab and allow service principals to use Power BI APIs
Tenant settings tab

Configure a workspace

Now create the workspace where your pipeline will publish the reports and grant permission to your Azure AD App to do this:

  • Select Workspaces tab.
  • Click the three vertical dots on the right of your new workspace.
  • Click Workspace access.
Power BI Reports Deployment
  • Search the app that you have previously registered in Azure AD and grant it the permission of Admin.
Power BI Reports Deployment

Azure DevOps

Install the extension

These instructions will show you how to install the Power BI Action extension that we are going to use for this tutorial:

  • Sign in to your Azure DevOps organization.
  • Go to Organization Settings.
  • Select Extensions.
  • Click on Browse Marketplace at the top right.
Extension page
  • As the Marketplace opens, search for Power BI Actions and click on the respective result.
  • Click on the Get it Free button.
Automate your Power BI Reports Deployment using Azure DevOps
Power BI Actions page
  • Select your target organization from the dropdown and click on Install to complete the procedure.
Installation process

Create a new service connection

  • Go to Project Settings.
  • Select Service connections.
  • Click the New service connection button and select Power BI Service Connection.
  • Fill in the parameters for the service connection and allow all pipelines to use this connection option.
  • Click OK to create the connection.
Creation of a new Power BI service connection

Creating the Build Pipeline

It is time to create your build pipeline.

  • From the dashboard, select Pipelines.
  • Click the New pipeline button.
  • Select Azure Git Repos as a source that will trigger our pipeline.
  • Azure DevOps will suggest several templates, select the Starter Pipeline, to begin with a bare bone pipeline.
  • Add the following YAML snippet to your pipeline.
trigger:
- masterpool:
vmImage: 'windows-latest'steps:
- task: CopyFiles@2
inputs:
SourceFolder: '$(Build.SourcesDirectory)'
Contents: '**.pbix'
TargetFolder: '$(Agent.TempDirectory)/$(Build.BuildId)'
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Agent.TempDirectory)/$(Build.BuildId)'
includeRootFolder: false
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip'
replaceExistingArchive: true
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'PowerBIArtifact'
publishLocation: 'Container'

Create a Release pipeline

To automatically deploy your report on Power BI, create a new release pipeline.

  • From the dashboard, select Pipelines and then Releases.
  • Click the New pipeline button.
  • Select Empty Job.
Empty job
  • Add the Extract Files task and configure it as follows.
Automate your Power BI Reports Deployment using Azure DevOps
Extraction task configuration
  • Finally, add a Power BI Action task, select Upload Power BI Report as Action, enter the target workspace, and add the Source file (path where there will be your report)
Automate your Power BI Reports Deployment using Azure DevOps
Power BI Action task

You need to specify the deployable component that will be built through the build pipeline and then released by the release pipeline.

  • Click Add an Artifact.
  • Select Build as Source type.
  • In the Source dropdown, select the Training repository.
  • Click Add to save.

To finalize your release pipeline, instruct the pipeline to automatically create a new release every time a build is available. Apply this feature by enabling the Continuous deployment trigger.

Continuous deployment trigger

It is now time to push your local code to your repository and start the pipelines.https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FyWM2wbwntCQ%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DyWM2wbwntCQ&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FyWM2wbwntCQ%2Fhqdefault.jpg&key=a19fcc184b9711e1b4764040d3dc5c07&type=text%2Fhtml&schema=youtube

For more great content, check out the Resource Centre

References

Find more great content here!

About the Author:

Ivan is a DevOps architect at Techedge Group. He delights in working in automation, application infrastructure, cloud migrations, and cutting-edge technology. One of his favorite hobbies is talking to developers about things they already knew but had never thought of that way before. When Ivan is not coding or mentoring other engineers, he enjoys cooking and hiking with his family.

Reference:

Porta, I. (2021). Automate your Power BI reports deployment using Azure DevOps. Available at: https://medium.com/swlh/automate-you-power-bi-reports-deployment-using-azure-devops-5ada8915d401 [Accessed: 3rd March 2021].

Share this on...

Rate this Post:

Share: