Powerplatform Actions Versions Save

Power Platform GitHub Actions automate common build and deployment tasks related to Power Platform. This includes synchronization of solution metadata (a.k.a. solutions) between development environments and source control, generating build artifacts, deploying to downstream environments, provisioning/de-provisioning of environments, and the ability to perform static analysis checks against your solution using the PowerApps checker service.

v1.5.0

2 weeks ago

Release Notes

Full Changelog: https://github.com/microsoft/powerplatform-actions/compare/v1.4.0...v1.5.0

v1.4.0

2 months ago

v1.3.0

4 months ago

Release Notes

Full Changelog: https://github.com/microsoft/powerplatform-actions/compare/v1.2.0...v1.3.0

v1.2.0

7 months ago

v1.1.0

8 months ago

Release Notes

  • actions-install now supports obtaining and install PAC from sources other than public nuget.org via https://github.com/microsoft/powerplatform-actions/pull/441
    • nuget-feed-override can be set to any feed location, including private feeds or even a local folder where the *.nupkg files exist on the actions runner disk
    •  nuget-feed-username and nuget-feed-password can be set for authenticated feeds. Not that Azure DevOps feeds will typically use an PAT in the password field with any non-empty string for the username
    • Alternatively, users who already have PAC installed on their actions runner can point our actions to the preinstalled copy via the use-preinstalled-pac argument
  • branch-solution now sets the commiter's email address to the current actor's github noreply address, or falls back to the github actions bot if no user actor is present https://github.com/microsoft/powerplatform-actions/pull/438
  • corrected parameters used in update-solution-version and set-online-solution-version https://github.com/microsoft/powerplatform-actions/pull/435  

PRs merged since last release

Full Changelog: https://github.com/microsoft/powerplatform-actions/compare/v1.0.0...v1.1.0

v1.0.0

9 months ago

What's Changed

  • New action set-online-solution-version, for updating the versions of solutions already present in Dataverse #412
  • Updated to new PAC v1.26.5
  • Major version increase to v1

Breaking Change

Converting an existing v0 pipeline to v1 requires first running the new actions-install action. For example, converting this old action

jobs:
  my-job-name:
    runs-on: windows-latest
    steps:
      - name: WhoAmI
        uses: microsoft/powerplatform-actions/who-am-i@v0
        with:
          environment-url: ...
          user-name: ...
          password-secret: ...

to v1 would now look like

jobs:
  my-job-name:
    runs-on: windows-latest
    steps:
      - name: Power Platform Action Install
        uses: microsoft/powerplatform-actions/actions-install@v1
      - name: WhoAmI
        uses: microsoft/powerplatform-actions/who-am-i@v1
        with:
          environment-url: ...
          user-name: ...
          password-secret: ...

PRs merged since last release

New Contributors

Full Changelog: https://github.com/microsoft/powerplatform-actions/compare/v0.10.10...v1.0.0

v0.10.10

10 months ago

What's Changed

Full Changelog: https://github.com/microsoft/powerplatform-actions/compare/v0...v0.10.10

v0.10.9

10 months ago

What's Changed

  • PAC updated to v1.25.2 (see its release notes on Nuget.org)
  • Updates to many dependencies, details in PR list below

PRs merged since last release:

Full Changelog: https://github.com/microsoft/powerplatform-actions/compare/v0.10.8...v0.10.9

v0.10.8

11 months ago