-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 776 Bytes
/
Copy pathbuild.yml
File metadata and controls
37 lines (31 loc) · 776 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
35
36
37
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build and package
shell: pwsh
run: .\build.ps1 -SevenZipPath "${env:ProgramFiles}\7-Zip\7z.exe"
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: sdls-build
path: |
bin/Release/net35/SDLS.dll
Archives/SDLS - Full.7z
Archives/SDLS - Full.zip
Archives/SDLS - Plugin Only.7z
Archives/SDLS - Plugin Only.zip