Skip to content

Commit

Permalink
fixing binary paths
Browse files Browse the repository at this point in the history
  • Loading branch information
nbingham1 committed Sep 16, 2024
1 parent 8431282 commit 5f12c98
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
binary_name: lm-linux
extension: ""
from: "lm"
to: "lm-linux"
- os: macos-latest
binary_name: lm-macos
extension: ""
from: "lm"
to: "lm-macos"
- os: windows-latest
binary_name: lm-windows
extension: ".exe"
from: "lm.exe"
to: "lm-windows.exe"

steps:
- name: Checkout code
Expand Down Expand Up @@ -72,6 +72,6 @@ jobs:
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./build/${{ matrix.binary_name }}${{ matrix.extension }}
asset_name: ${{ matrix.binary_name }}${{ matrix.extension }}
asset_path: ${{ matrix.from }}
asset_name: ${{ matrix.to }}
asset_content_type: application/octet-stream

0 comments on commit 5f12c98

Please sign in to comment.