We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ba9bd5 + c213e8d commit 963d0c0Copy full SHA for 963d0c0
.github/workflows/nightly.yml
@@ -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
23
+ name: windows-nightly
24
+ path: ./artifacts
0 commit comments