Skip to content

Commit

Permalink
remove version from binary name (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewhauser authored Apr 12, 2022
1 parent 8187e68 commit 3330c60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: bazel-differ-linux-amd64
asset_name: bazel-differ-${{ steps.release_version.outputs.VERSION }}-linux-x86_64
asset_name: bazel-differ-linux-x86_64
asset_content_type: application/octet-stream
- name: upload linux arm64
id: upload-release-asset-linux-arm64
Expand All @@ -48,7 +48,7 @@ jobs:
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: bazel-differ-linux-arm64
asset_name: bazel-differ-${{ steps.release_version.outputs.VERSION }}-linux-arm64
asset_name: bazel-differ-linux-arm64
asset_content_type: application/octet-stream

mac:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: bazel-differ-darwin-amd64
asset_name: bazel-differ-${{ steps.release_version.outputs.VERSION }}-darwin-x86_64
asset_name: bazel-differ-darwin-x86_64
asset_content_type: application/octet-stream
- name: upload darwin arm64
id: upload-release-asset-darwin-arm64
Expand All @@ -93,5 +93,5 @@ jobs:
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: bazel-differ-darwin-arm64
asset_name: bazel-differ-${{ steps.release_version.outputs.VERSION }}-darwin-arm64
asset_name: bazel-differ-darwin-arm64
asset_content_type: application/octet-stream

0 comments on commit 3330c60

Please sign in to comment.