Skip to content

Commit

Permalink
Merge pull request #475 from dvadym/upload_artifact
Browse files Browse the repository at this point in the history
Store build artificats in Publish workflow for debugging
  • Loading branch information
chinmayshah99 authored Oct 18, 2023
2 parents e754be9 + ad5ffab commit 7110b21
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 7110b21

Please sign in to comment.