We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1805f85 commit 9abb600Copy full SHA for 9abb600
.github/workflows/main.yml
@@ -42,13 +42,14 @@ jobs:
42
- name: Compile and Build JAR
43
run: |
44
mkdir ${{ env.OUT_DIR }}
45
- javac -d ${{ env.OUT_DIR }} -cp lib/*:src/ src/*.java
+ javac -d ${{ env.OUT_DIR }} -cp "lib/*" src/*.java
46
# Generate a temporary manifest file using echo
47
echo "Main-Class: ${{ env.MAIN_CLASS }}" > customManifest.txt
48
jar cvfm ${{ env.OUT_DIR }}/${{ env.FILE_NAME }}-${{ env.VERSION }}.jar \
49
customManifest.txt \
50
-C ${{ env.OUT_DIR }} ./ \
51
-C ./ assets/
52
+ -C lib .
53
54
55
- name: Upload JAR as Artifact
0 commit comments