From a7fd5f7368f156c071ffed00ca8a41337f1f8746 Mon Sep 17 00:00:00 2001 From: shadow <81448108+ShadowMonster99@users.noreply.github.com> Date: Wed, 12 Jun 2024 19:09:11 -0700 Subject: [PATCH] core(build): upload python artifacts --- .github/workflows/build-windows.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index f945c9fb..1339b9c0 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -85,6 +85,22 @@ jobs: # verify python is installed PCbuild\win32\python.exe --version + - name: Upload Python artifacts + run: | + + mkdir D:/a/Millennium/Millennium/build/python + # Move the python311.dll binary to the release directory + copy D:\a\Millennium\Millennium\Python-3.11.8\PCbuild\win32\python311.dll D:/a/Millennium/Millennium/build/python/python311.dll + copy D:\a\Millennium\Millennium\Python-3.11.8\PCbuild\win32\python311.lib D:/a/Millennium/Millennium/build/python/python311.lib + env: + VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" + + - name: Upload Build Artifact + uses: actions/upload-artifact@v4 + with: + name: python 3.11.8 build libraries + path: D:/a/Millennium/Millennium/build/python + - name: (Generator) Integrate VS2022 uses: microsoft/setup-msbuild@v2 with: