From 20ece5bb67281e555a2d819a800eedb08121442d Mon Sep 17 00:00:00 2001 From: Diego Ferigo Date: Sat, 19 Dec 2020 17:12:48 +0100 Subject: [PATCH] Generate artifacts of sdist and wheel packages --- .github/workflows/cicd.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 6208db77e..ff4a1a673 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -238,6 +238,12 @@ jobs: pip3 install cmake_build_extension setuptools_scm python3 setup.py sdist + - uses: actions/upload-artifact@v2 + if: matrix.type == 'User' + with: + name: packages + path: dist/* + # Validate the last tag accordingly to PEP440 # From https://stackoverflow.com/a/37972030/12150968 - name: Check PEP440 compliance