Skip to content

Commit

Permalink
Fixes asset names for jam cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Moran committed May 12, 2020
1 parent 913097d commit 67aff6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 67aff6b

Please sign in to comment.