-
-
Notifications
You must be signed in to change notification settings - Fork 48
34 lines (31 loc) · 729 Bytes
/
build.yml
File metadata and controls
34 lines (31 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
on:
push:
branches:
- master
- main
jobs:
build:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v1
- name: Install Prerequisites
run: .\build\psf-prerequisites.ps1
shell: powershell
- name: Compile Help
run: .\build\vsts-help.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 }}
- name: Release
run: .\build\vsts-release.ps1
shell: powershell
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}