Modify build to only run on master as this publishes to the PS Gallery #69
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- master | |
- Development | |
push: | |
branches: | |
- master | |
- Development | |
- "bugfix/117-fails-to-install-due-to-no-robustcloudcommand" | |
jobs: | |
validate: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Prerequisites | |
run: .\build\vsts-prerequisites.ps1 | |
shell: powershell | |
- name: Validate | |
run: .\build\vsts-validate.ps1 | |
shell: powershell |