Skip to content

Commit

Permalink
Wrap the mv command in quotations and add echo for testing (#4032)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekevss authored Nov 8, 2024
1 parent 9319276 commit 5ea44d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ jobs:
COMMIT_HASH=$(git rev-parse --short HEAD)
echo "FILE_NAME=boa-nightly-linux-${DATE}-${COMMIT_HASH}" >> $GITHUB_ENV
- name: Rename Binary
run: mv target/release/boa target/release/$FILE_NAME
- name: Rename binary to file name
run: |
echo "Renaming binary to $FILE_NAME"
mv target/release/boa "target/release/$FILE_NAME"
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit 5ea44d8

Please sign in to comment.