From ad5ffab9f2a43c6de621d96af2056b317323f513 Mon Sep 17 00:00:00 2001 From: Vadym Doroshenko Date: Tue, 17 Oct 2023 15:36:04 +0200 Subject: [PATCH] Store build artificats for debugging --- .github/workflows/publish.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e61f79bf..6157fc2f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -76,7 +76,16 @@ jobs: export CIBW_BUILD_VERBOSITY=1 # Build wheel echo "Building ${CIBW_BUILD} wheel" - python -m cibuildwheel --output-dir dist . + python -m cibuildwheel --output-dir dist . + - name: Archive Linux build artifacts + # more details https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts + if: runner.os == 'Linux' + uses: actions/upload-artifact@v3 + with: + name: dist + path: | + dist + retention-days: 2 - name: Build Google DP Mac if: runner.os == 'macOS'