Rearange order of requests in config.yaml and update file names rearr… #24
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: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
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 | |
- name: Build | |
run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY | |
shell: powershell | |
env: | |
APIKEY: ${{ secrets.ApiKey }} |