Skip to content

Commit

Permalink
Fix wrong jarfile rename
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonBein authored Jan 19, 2024
1 parent dc36a43 commit 7e74b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Create .zip
run: |
cd ./target/
find ./ -type f -name '*.jar' ! -name '*test*' -exec mv {} ./scylla.jar \;
find ./ -maxdepth 1 -type f -name '*.jar' ! -name '*test*' -exec mv {} ./scylla.jar \;
mv ./*tests.jar ./scylla-tests.jar
zip -r ../scylla.zip ./*.jar ./libs/*
cd ..
Expand Down

0 comments on commit 7e74b0d

Please sign in to comment.