diff --git a/.github/workflows/build-package-release.yml b/.github/workflows/build-package-release.yml index 826cf7ec..86a6bdd1 100644 --- a/.github/workflows/build-package-release.yml +++ b/.github/workflows/build-package-release.yml @@ -19,9 +19,15 @@ jobs: python-version: '3.x' - name: Install dependencies run: python -m pip install --upgrade pip setuptools wheel build - - name: Build package + - name: Build wheel package run: python -m build --wheel + - name: Upload wheels to artifacts + uses: actions/upload-artifact@v3 + with: + name: wheels + path: dist/*.whl - name: Release + if: "startsWith(github.ref, 'refs/tags/')" uses: softprops/action-gh-release@v1 with: files: dist/*.whl