Skip to content

Commit

Permalink
added push artifacts on build develop
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsw committed Aug 5, 2024
1 parent 7e2fcf4 commit 0d3bb22
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0d3bb22

Please sign in to comment.