Update release.yml

This commit is contained in:
DarthAffe 2024-04-29 21:28:28 +02:00 committed by GitHub
parent 51eed1afaa
commit 825ec73bda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,13 +24,13 @@ jobs:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
run: dotnet restore StableDiffusion.NET
- name: Build
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}
run: dotnet build StableDiffusion.NET --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}
- name: Test
run: dotnet test --no-build --verbosity normal --configuration Release
run: dotnet test StableDiffusion.NET --no-build --verbosity normal --configuration Release
- name: Upload Nuget Build Artifact
uses: actions/upload-artifact@v4.3.1