Skip to content

Commit 4425e50

Browse files
committed
Fixing release build workflow
- Line 48 (.github/workflows/release.yml:48): Changed hashrust to hash_rust for Unix builds - Line 54 (.github/workflows/release.yml:54): Changed hashrust.exe to hash_rust.exe for Windows builds
1 parent dee2639 commit 4425e50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
- name: Prepare binary (Unix)
4646
if: matrix.os != 'windows-latest'
4747
run: |
48-
cp target/${{ matrix.target }}/release/hashrust ${{ matrix.name }}
48+
cp target/${{ matrix.target }}/release/hash_rust ${{ matrix.name }}
4949
chmod +x ${{ matrix.name }}
5050
5151
- name: Prepare binary (Windows)
5252
if: matrix.os == 'windows-latest'
5353
run: |
54-
cp target/${{ matrix.target }}/release/hashrust.exe ${{ matrix.name }}
54+
cp target/${{ matrix.target }}/release/hash_rust.exe ${{ matrix.name }}
5555
5656
- name: Upload artifact
5757
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)