Skip to content

Commit efff0e0

Browse files
committed
Fix release workflow
1 parent 8715095 commit efff0e0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,17 @@ jobs:
4444
name="vume-${target%-unknown-linux-gnu}"
4545
cp "target/$target/release/vume" "$name"
4646
47+
- name: Move artifact
48+
run: |
49+
target=${{ matrix.target }}
50+
name="vume-${target%-unknown-linux-gnu}"
51+
mv "$name" "vume-$target"
52+
4753
- name: Upload artifact
4854
uses: actions/upload-artifact@v4
4955
with:
5056
name: vume-${{ matrix.target }}
51-
path: "vume-${{ matrix.target %-unknown-linux-gnu }}"
57+
path: "vume-${{ matrix.target }}"
5258

5359
release:
5460
name: Create Release

0 commit comments

Comments
 (0)