Skip to content

Commit

Permalink
FIX target name
Browse files Browse the repository at this point in the history
  • Loading branch information
karminski committed Oct 5, 2024
1 parent 3b4b2ec commit 639fbaf
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,24 @@ jobs:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
artifact_name: core-to-core-latency
asset_name: core-to-core-latency-linux-amd64
artifact_name: core-to-core-latency-plus
asset_name: core-to-core-latency-plus-linux-amd64
# - os: ubuntu-latest
# target: aarch64-unknown-linux-gnu
# artifact_name: core-to-core-latency
# asset_name: core-to-core-latency-linux-arm64
# artifact_name: core-to-core-latency-plus
# asset_name: core-to-core-latency-plus-linux-arm64
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact_name: core-to-core-latency.exe
asset_name: core-to-core-latency-windows-amd64.exe
artifact_name: core-to-core-latency-plus.exe
asset_name: core-to-core-latency-plus-windows-amd64.exe
- os: macos-latest
target: x86_64-apple-darwin
artifact_name: core-to-core-latency
asset_name: core-to-core-latency-macos-amd64
artifact_name: core-to-core-latency-plus
asset_name: core-to-core-latency-plus-macos-amd64
# - os: macos-latest
# target: aarch64-apple-darwin
# artifact_name: core-to-core-latency
# asset_name: core-to-core-latency-macos-arm64
# artifact_name: core-to-core-latency-plus
# asset_name: core-to-core-latency-plus-macos-arm64

steps:
- name: Checkout repository
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for asset in core-to-core-latency-*; do
for asset in core-to-core-latency-plus-*; do
gh release upload ${{ github.ref_name }} $asset
done
Expand Down

0 comments on commit 639fbaf

Please sign in to comment.