diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index 7561bde47..b489a0f32 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -166,8 +166,12 @@ jobs: %TDESKTOP_BUILD_DEFINE% ^ -DCMAKE_SYSTEM_VERSION=%SDK% - cd ..\out - msbuild -m Kotatogram.sln /p:Configuration=Debug,Platform=${{ matrix.arch }},DebugSymbols=false,DebugType=none + if "${{ matrix.arch }}" == "x64" ( + cd ..\out64 + ) else ( + cd ..\out + ) + msbuild -m Telegram.sln /p:Configuration=Debug,Platform=${{ matrix.arch }},DebugSymbols=false,DebugType=none - name: Move artifact. if: env.UPLOAD_ARTIFACT == 'true'