Skip to content

Commit 74d8537

Browse files
committed
fix: Use the correct target directory for release assets
1 parent 404fef2 commit 74d8537

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
mkdir assets
3636
cp -t assets/ target/${{matrix.TARGET}}/release/kmon && strip -s assets/kmon
3737
cp -t assets/ LICENSE README.md CHANGELOG.md
38-
mv target/man .
38+
mv target/${{matrix.TARGET}}/man .
3939
cp -t assets/ --parents man/kmon.8
40-
mv target/completions .
40+
mv target/${{matrix.TARGET}}/completions .
4141
cp -t assets/ --parents completions/*
4242
mv assets/ kmon-${{env.RELEASE_VERSION}}/
4343
tar -czvf kmon-${{env.RELEASE_VERSION}}-${{matrix.TARGET}}.tar.gz \

0 commit comments

Comments
 (0)