Skip to content

Commit

Permalink
Update publish.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
twardoch committed May 1, 2023
1 parent dde2337 commit 3aa1295
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
pip install build
- name: Build wheel
run: python -m build
- name: Identify Wheel File
id: wheel_info
run: echo "::set-output name=wheel_file::$(ls dist/*.whl)"
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -35,7 +38,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/audiostretchy-*.whl
asset_path: ${{ steps.wheel_info.outputs.wheel_file }}
asset_name: audiostretchy-${{ github.ref }}.whl
asset_content_type: application/octet-stream
- name: Publish to PyPi
Expand Down

0 comments on commit 3aa1295

Please sign in to comment.