diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index aaf27f3f..f82eb9c9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -49,7 +49,7 @@ jobs: with: 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: build/jam-darwin - asset_name: ${{ github.event.repository.name }}-${{ steps.tag.outputs.tag }}.tgz + asset_name: jam-darwin asset_content_type: application/octet-stream - name: Upload Jam (linux) uses: actions/upload-release-asset@v1 @@ -58,6 +58,6 @@ jobs: with: 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: build/jam-linux - asset_name: ${{ github.event.repository.name }}-${{ steps.tag.outputs.tag }}.tgz + asset_name: jam-linux asset_content_type: application/octet-stream