From b1088371d377ad0c0c1c1258ed0271aa8107230c Mon Sep 17 00:00:00 2001 From: Lywx Date: Sun, 2 Feb 2025 11:01:11 -0600 Subject: [PATCH] 3rd attempt and fixing this --- .github/workflows/windows_build.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 4f8fe3c..16c1ab0 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -13,14 +13,10 @@ jobs: - uses: actions/checkout@v4 - name: Build run: | - cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release + cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE:STRING=Release cmake --build ./build/x64 - - name: Create Package - run: | - mkdir torch-release - mv Debug/torch.exe torch-release/ - - name: Upload build + - name: Publish packaged artifacts uses: actions/upload-artifact@v4 with: - name: Windows Build - path: torch-release \ No newline at end of file + name: torch-windows-x64 + path: build/x64 \ No newline at end of file