Skip to content

Commit

Permalink
ci(release): move binary under target/ (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham authored Jun 10, 2024
1 parent 95281fc commit 5b87bf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
cargo test --release --locked
export BINARY_NAME="${EXECUTABLE}-$(rustc --version --verbose | grep host | cut -d ' ' -f 2)${EXE_SUFFIX}"
mv "target/release/${EXECUTABLE}${EXE_SUFFIX}" "./${BINARY_NAME}"
echo "binary=${BINARY_NAME}" >> $GITHUB_OUTPUT
mv "target/release/${EXECUTABLE}${EXE_SUFFIX}" "./target/${BINARY_NAME}"
echo "binary=target/${BINARY_NAME}" >> $GITHUB_OUTPUT
- name: Publish to crates.io
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down

0 comments on commit 5b87bf8

Please sign in to comment.