summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-10 15:56:00 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-10 15:56:00 +0200
commitd52a7dc4c5d0a1a3de3cdb1074182079c0827c2f (patch)
treed7ce7cddcc8dd1447a2c1aaf58941344b00e52ee
parentfff2aee667a674b7da2889abdafd8cec360ef621 (diff)
Add dependencies as artifacts to be able to download them
-rw-r--r--.github/workflows/pip-packaging-windows.yml7
-rw-r--r--CMakeGUDHIVersion.txt2
2 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/pip-packaging-windows.yml b/.github/workflows/pip-packaging-windows.yml
index 96ac05c0..5d9eafe7 100644
--- a/.github/workflows/pip-packaging-windows.yml
+++ b/.github/workflows/pip-packaging-windows.yml
@@ -40,4 +40,9 @@ jobs:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
- run: python -m twine upload --repository-url https://test.pypi.org/legacy/ build/src/python/dist/* \ No newline at end of file
+ run: python -m twine upload --repository-url https://test.pypi.org/legacy/ build/src/python/dist/*
+ - name: Upload artifacts
+ uses: actions/upload-artifact@v1
+ with:
+ name: dependencies
+ path: c:/vcpkg/installed/x64-windows/lib/
diff --git a/CMakeGUDHIVersion.txt b/CMakeGUDHIVersion.txt
index d93850cd..b00d82d0 100644
--- a/CMakeGUDHIVersion.txt
+++ b/CMakeGUDHIVersion.txt
@@ -1,6 +1,6 @@
set (GUDHI_MAJOR_VERSION 3)
set (GUDHI_MINOR_VERSION 2)
-set (GUDHI_PATCH_VERSION 0a14)
+set (GUDHI_PATCH_VERSION 0a15)
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})
message(STATUS "GUDHI version : ${GUDHI_VERSION}")