Skip to content

Commit

Permalink
core(build): upload python artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Jun 13, 2024
1 parent 9b84f5d commit a7fd5f7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a7fd5f7

Please sign in to comment.