Skip to content

Commit eec99d2

Browse files
committed
Fix release workflow
1 parent 8715095 commit eec99d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
- name: Package
4242
run: |
4343
target=${{ matrix.target }}
44-
name="vume-${target%-unknown-linux-gnu}"
45-
cp "target/$target/release/vume" "$name"
44+
arch="${target%%-*}"
45+
cp "target/$target/release/vume" "vume-${arch}"
4646
4747
- name: Upload artifact
4848
uses: actions/upload-artifact@v4
4949
with:
5050
name: vume-${{ matrix.target }}
51-
path: "vume-${{ matrix.target %-unknown-linux-gnu }}"
51+
path: "vume-*"
5252

5353
release:
5454
name: Create Release

0 commit comments

Comments
 (0)