Skip to content

Build

Build #37

Workflow file for this run

name: Build
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
#- name: Install Prerequisites
# run: .\build\vsts-prerequisites.ps1
# shell: powershell
- name: Validate
run: .\build\vsts-validate.ps1
shell: pwsh
- name: Build
run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY -AutoVersion
shell: pwsh
env:
APIKEY: ${{ secrets.ApiKey }}