3rd attempt and fixing this

This commit is contained in:
Lywx
2025-02-02 11:01:11 -06:00
committed by GitHub
parent c152b6d75f
commit b1088371d3
+4 -8
View File
@@ -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
name: torch-windows-x64
path: build/x64