Skip to content

Commit

Permalink
Update readme for v1 changes (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehcrashxor committed Aug 22, 2023
1 parent 220dd26 commit 09afea1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
runs-on: windows-latest # alternate runner OS is: ubuntu-latest

steps:
- name: Install Power Platform Tools
uses: microsoft/powerplatform-actions/actions-install@v1

- name: Export Solution
uses: microsoft/powerplatform-actions/export-solution@v0
uses: microsoft/powerplatform-actions/export-solution@v1
with:
environment-url: 'https://myenv.crm.dynamics.com'
user-name: 'me@myenv.onmicrosoft.com'
Expand All @@ -27,22 +30,22 @@ jobs:
working-directory: 'out'

- name: Unpack Solution
uses: microsoft/powerplatform-actions/unpack-solution@v0
uses: microsoft/powerplatform-actions/unpack-solution@v1
with:
solution-file: 'out/aSolution1.zip'
solution-folder: 'out/solutions/solution one'
solution-type: 'Unmanaged'
overwrite-files: true

- name: Publish Solution
uses: microsoft/powerplatform-actions/publish-solution@v0
uses: microsoft/powerplatform-actions/publish-solution@v1
with:
environment-url: 'https://myenv.crm.dynamics.com'
user-name: 'me@myenv.onmicrosoft.com'
password-secret: ${{ secrets.MYPASSWORD }}

- name: Prepare solution changes for check-in into source control
uses: microsoft/powerplatform-actions/branch-solution@v0
uses: microsoft/powerplatform-actions/branch-solution@v1
with:
solution-folder: 'out/solutions/solution one'
solution-target-folder: 'src/solutions/solution1'
Expand Down

0 comments on commit 09afea1

Please sign in to comment.