Build pipeline
The next pipeline we have to create is the build pipeline. It only has the following four steps:
- Checkout (GH only)
- Install tooling
- Pack solution
- Publish artifact
Checkout (GH only)
Before we install the tooling, GH needs an additional step to checkout the repository.
The YAML is as follows:
- name: Checkout uses: actions/checkout@v4
Installing tooling
This step is exactly the same as it was for the export pipeline.
The ADO YAML is as follows:
- task: PowerPlatformToolInstaller@2 displayName: 'Power Platform Tool Installer '
The GH YAML is as follows:
- name: Install Power Platform Tools uses: microsoft/powerplatform-actions/actions-install@v1
Packing the solution
As the second step, we have to pack our managed solution from source control. It is important to change the parameters to handle your solution as well as the folder structure you have.
ADO
The following...