-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (37 loc) · 813 Bytes
/
ci.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
37
38
39
40
41
42
43
44
name: CI
on:
push:
branches:
- master
- 'release/**'
paths-ignore:
- '**.md'
pull_request:
branches:
- master
- 'release/**'
paths-ignore:
- '**.md'
jobs:
build:
name: win-build
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
shell: pwsh
run: ./Build/install-dependencies.ps1
- name: Dotnet info
shell: pwsh
run: dotnet --info
- name: Build
shell: pwsh
run: ./Build/build.ps1 -Mode "github" -GithubToken "${{ secrets.GITHUB_TOKEN }}"
- name: Artifacts
uses: actions/upload-artifact@v4
with:
name: packages
path: |
.\bin\artifacts\*.nupkg
.\bin\artifacts\*.zip
if-no-files-found: error