Skip to content

Commit

Permalink
Try to create artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandro.molina committed Jun 2, 2022
1 parent da8cefb commit 2a2f640
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,30 @@ jobs:

- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
path: ./wheelhouse/*.whl

build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Build sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v2
with:
path: dist/*.tar.gz

store_tag_artifacts:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist
- uses: softprops/action-gh-release@v1
with:
files: dist/*

0 comments on commit 2a2f640

Please sign in to comment.