Skip to content

Commit 963d0c0

Browse files
committed
Merge branch 'main' of github.com:NotNite/SPRXPatcher
2 parents 8ba9bd5 + c213e8d commit 963d0c0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/nightly.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on: [ push, pull_request ]
2+
3+
name: Nightly builds
4+
5+
jobs:
6+
windows:
7+
name: Windows nightly builds
8+
runs-on: windows-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-dotnet@v3
12+
with:
13+
dotnet-version: 8.0.x
14+
- name: Install dependencies
15+
run: dotnet restore
16+
- name: Build
17+
run: dotnet build --configuration Release --no-restore
18+
- name: Publish
19+
run: dotnet publish SPRXPatcher/SPRXPatcher.csproj --self-contained false --output ./artifacts
20+
- name: Upload artifacts
21+
uses: actions/upload-artifact@v3
22+
with:
23+
name: windows-nightly
24+
path: ./artifacts

0 commit comments

Comments
 (0)