Browse Source

Wrap the mv command in quotations and add echo for testing (#4032)

pull/3973/merge
Kevin Ness 2 weeks ago committed by GitHub
parent
commit
5ea44d8c40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .github/workflows/nightly_build.yml

6
.github/workflows/nightly_build.yml

@ -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

Loading…
Cancel
Save