Adjusted wording for variables and display messages. Added a loading … #17
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Install Prerequisites | |
| run: .\build\vsts-prerequisites.ps1 | |
| shell: pwsh | |
| - name: Validate | |
| run: .\build\vsts-validate.ps1 | |
| shell: pwsh | |
| - name: Build | |
| run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY | |
| shell: pwsh | |
| env: | |
| APIKEY: ${{ secrets.ApiKey }} |