We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a59294c commit ef05da6Copy full SHA for ef05da6
1 file changed
.github/workflows/ci.yml
@@ -52,9 +52,9 @@ jobs:
52
mkdir test_artifact/test
53
ls ./test
54
for i in ./test/*.c; do
55
- mv -v "${i%%.*}" ./test_artifact/test/;
+ cp "${i%%.*}" ./test_artifact/test/;
56
done
57
- mv -v ./test/testcpp ./test_artifact/test/
+ cp ./test/testcpp ./test_artifact/test/
58
mv ./inst ./test_artifact/
59
- uses: actions/upload-artifact@v7
60
with:
0 commit comments