diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 74ae453..f2f8182 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -1,6 +1,3 @@ -# This workflow will build a .NET project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net - name: .NET on: @@ -23,6 +20,11 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build --no-restore + run: dotnet build --no-restore --configuration Release - name: Test run: dotnet test --no-build --verbosity normal + - name: Upload Build Artifacts + uses: actions/upload-artifact@v4 + with: + name: my-dotnet-build + path: '**/bin/Release/*' \ No newline at end of file