From f63f645170ca78a322de23ae817b653a363bf886 Mon Sep 17 00:00:00 2001 From: Florian Hopfner Date: Sat, 2 Mar 2024 14:16:13 +0100 Subject: [PATCH] Fix output path in build step --- .github/workflows/version-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-release.yml b/.github/workflows/version-release.yml index 6f9736d..fd9a2f4 100644 --- a/.github/workflows/version-release.yml +++ b/.github/workflows/version-release.yml @@ -35,7 +35,7 @@ jobs: run: nuget restore 2LCS/2LCS.csproj - name: Build - run: msbuild 2LCS/2LCS.csproj /p:Configuration=Release /p:OutputPath=2LCS/bin/Release /p:Version=${{ inputs.version }} + run: msbuild 2LCS/2LCS.csproj /p:Configuration=Release /p:OutputPath=bin/Release /p:Version=${{ inputs.version }} - name: Upload ${{ inputs.release_name }}.zip uses: actions/upload-artifact@v4