From 67aff6bb03baa27ebde6e6da3b9082fada270e92 Mon Sep 17 00:00:00 2001 From: Ryan Moran Date: Tue, 12 May 2020 14:01:08 -0400 Subject: [PATCH] Fixes asset names for jam cli --- .github/workflows/create-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index e1f817b5..5fdff5fb 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