Skip to content

Commit

Permalink
Merge branch 'main' of github.com:NotNite/SPRXPatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Aug 12, 2024
2 parents 8ba9bd5 + c213e8d commit 963d0c0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on: [ push, pull_request ]

name: Nightly builds

jobs:
windows:
name: Windows nightly builds
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish
run: dotnet publish SPRXPatcher/SPRXPatcher.csproj --self-contained false --output ./artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: windows-nightly
path: ./artifacts

0 comments on commit 963d0c0

Please sign in to comment.