From fb4dfa3fdc7c9a5e8430b37c115e2a6ac4567a7c Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Wed, 18 Jan 2023 13:19:28 -0800 Subject: [PATCH] Upload artifacts from Windows build --- .github/workflows/msvc-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/msvc-ci.yml b/.github/workflows/msvc-ci.yml index 7aa79d3..20ac5e6 100644 --- a/.github/workflows/msvc-ci.yml +++ b/.github/workflows/msvc-ci.yml @@ -8,13 +8,14 @@ jobs: build: runs-on: windows-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Configure and Build run: | mkdir build cd build cmake -G "Visual Studio 17 2022" -A Win32 .. cmake --build . --config Debug + cmake --build . --config Release # This should probably be fixed to work from MSVC without needing to # use a bash shell and the GNU userland tools... But for now, the @@ -25,3 +26,9 @@ jobs: bash.exe ..\..\tests\all_tests.sh env: PYTHON_EXE: python.exe + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: pycdc-release + path: build\Release\*.exe