Skip to content

Commit

Permalink
Fix content-type for whl files
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Sep 7, 2024
1 parent ed3b786 commit 3a19ff7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
upload_url: ${ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: dist/*.tar.gz
asset_name: Source Tarball
asset_content_type: application/tar+gzip

- name: Upload x86-64 Wheel
id: upload-release-asset-x86_64
Expand All @@ -62,6 +63,7 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: dist/*x86_64.whl
asset_name: x86_64 Wheel
asset_content_type: application/zip

- name: Upload arm64 Wheel
id: upload-release-asset-aarch64
Expand All @@ -72,3 +74,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: dist/*aarch64.whl
asset_name: aarch64 Wheel
asset_content_type: application/zip

0 comments on commit 3a19ff7

Please sign in to comment.