Skip to content

Commit

Permalink
Fix target paths for release builds
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Gerace <[email protected]>
  • Loading branch information
nickgerace committed Feb 28, 2025
1 parent 621519d commit f003181
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,7 @@ jobs:
fi
echo $PRERELEASE
if [[ "${{ matrix.target }}" == "x86_64-unknown-linux-musl" ]]; then
mv target/${{ matrix.target }}/release/${{ matrix.artifact_name }} ${{ matrix.asset_name }}
else
mv target/release/${{ matrix.artifact_name }} ${{ matrix.asset_name }}
fi
mv target/${{ matrix.target }}/release/${{ matrix.artifact_name }} ${{ matrix.asset_name }}
- uses: softprops/action-gh-release@v2
with:
files: ${{ matrix.asset_name }}
Expand Down

0 comments on commit f003181

Please sign in to comment.