Skip to content

aarohbits/PowerPlatformwithALMwithAzureDevOps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PowerPlatformwithALMwithAzureDevOps

Step by step document how to use Power Platform with ALM using AzureDevOps

  1. Build CI/CD with Azure for Microsoft Power Platform Overall Microsoft Power Platform with Azure DevOps can be viewed here Build CI/CD with Azure for Microsoft Power Platform

  2. Here is STEP by STEP Guide with screenshots on how to leverage Power Platform with Azure DevOps. Build CI/CD with Azure for Microsoft Power Platform

The guide is located here Step by Step Guide leverage Power Platform with Azure DevOps

  1. The code block for Azure DevOps Pipeline is in this as follows

Power Platform Export Solution
Solution Name: $(SolutionName)
Solution Output File: $(Build.StagingDirectory)\$(SolutionName)_Unmanaged.zip

Power Platform Unpack Solution
Solution Input File: $(Build.StagingDirectory)\$(SolutionName)_Unmanaged.zip
Target Folder to Unpack Solution: $(Build.SourcesDirectory)\$(SolutionName)\Unmanaged

Publish Artifact: drop
Path to publish: $(Build.SourcesDirectory)\$(SolutionName)\Unmanaged

  1. Command Line Snippet
cd $(Build.SourcesDirectory)

# Set a per-project email address and username
git config user.email "aroh.shukla@onmicrosoft.com"
git config user.name "Aroh Shukla"

# Navigate to the main branch
git checkout -B main

# Update the local version of a repository from a remote
git pull

# Add all files to the Git repository
git add --all

# Record the changes in the repository
git commit -m "Updated the solution"

# Authenticate against a git repository in a build process
git -c http.extraheader="AUTHORIZATION: bearer $(System.AccessToken)" push origin main

About

Step by step document how to use Power Platform with ALM using AzureDevOps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published