Skip to content

Commit 9abb600

Browse files
committed
repush
1 parent 1805f85 commit 9abb600

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,14 @@ jobs:
4242
- name: Compile and Build JAR
4343
run: |
4444
mkdir ${{ env.OUT_DIR }}
45-
javac -d ${{ env.OUT_DIR }} -cp lib/*:src/ src/*.java
45+
javac -d ${{ env.OUT_DIR }} -cp "lib/*" src/*.java
4646
# Generate a temporary manifest file using echo
4747
echo "Main-Class: ${{ env.MAIN_CLASS }}" > customManifest.txt
4848
jar cvfm ${{ env.OUT_DIR }}/${{ env.FILE_NAME }}-${{ env.VERSION }}.jar \
4949
customManifest.txt \
5050
-C ${{ env.OUT_DIR }} ./ \
5151
-C ./ assets/
52+
-C lib .
5253
5354
5455
- name: Upload JAR as Artifact

0 commit comments

Comments
 (0)