From cbef4ae1e223dd86784130696e2715bc4544d271 Mon Sep 17 00:00:00 2001 From: slxdy Date: Wed, 3 Apr 2024 00:20:38 +0200 Subject: [PATCH] Added build artifacts to actions --- .github/workflows/dotnet.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 21899ff..b7fa629 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -20,4 +20,9 @@ jobs: - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build --no-restore + run: dotnet build -c "Release" --no-restore + - name: Upload Build + uses: actions/upload-artifact@v4 + with: + name: "TweaksLauncher" + path: "output/Release"