Skip to content

Commit

Permalink
Fix action to upload right wheel to release
Browse files Browse the repository at this point in the history
  • Loading branch information
joselsegura committed Sep 25, 2020
1 parent 4c2e298 commit 6b876d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
pip install -e .[dev]
- name: Build dists for Python 3.7
run: |
python setup.py sdist
python setup.py bdist_wheel
python setup.py sdist bdist_wheel
ls dist/
- name: Extract tag name
id: tag
run: |
Expand Down Expand Up @@ -54,6 +54,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/garage-door-controller-${{ steps.tag.outputs.TAG }}-py3-none-any.whl
asset_path: ./dist/garage_door_controller-${{ steps.tag.outputs.TAG }}-py3-none-any.whl
asset_name: garage-door-controller-${{ steps.tag.outputs.TAG }}-py3-none-any.whl
asset_content_type: application/zip

0 comments on commit 6b876d3

Please sign in to comment.