-
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 885 Bytes
/
Build.yml
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
35
36
# ------------------------------------------------------------------------------
# Build.yml
# ------------------------------------------------------------------------------
name: Build
on:
push:
pull_request:
branches-ignore:
- master
- main
workflow_dispatch:
jobs:
Build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: NuGet Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
7.0.x
8.0.x
- name: Run './build/build.cmd'
run: ./build/build.cmd --root ./build
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
SignFile: ${{ secrets.SIGN_FILE }}
SignPassword: ${{ secrets.SIGN_PASSWORD }}
NugetApiUrl: ${{ secrets.NUGET_API_URL }}
NugetApiKey: ${{ secrets.NUGET_API_KEY }}