From 8eefb56db917817d24924d625612a10a36c458bd Mon Sep 17 00:00:00 2001 From: ALittlePatate <48603993+ALittlePatate@users.noreply.github.com> Date: Wed, 12 Jun 2024 21:54:37 +0200 Subject: [PATCH] add: auto Release after msbuild --- .github/workflows/msbuild.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index c2eb8cc..9a958b4 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -38,3 +38,9 @@ jobs: # Add additional options to the MSBuild command line here (like platform or verbosity level). # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} + + - name: Create Release + uses: ncipollo/release-action@v1 + with: + artifacts: "x64/Release/DevourClient.dll" + generateReleaseNotes: true