A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: dont make a jarzip, make a jar then zip

+2 -1
+2 -1
.gitlab-ci.yml
··· 12 12 stage: build 13 13 image: eclipse-temurin:21-jdk-alpine 14 14 before_script: 15 + - apk add --no-cache zip 15 16 - chmod +x gradlew 16 17 script: 17 18 - ./gradlew clean jar 18 19 - mkdir -p dist/config 19 20 - cp build/libs/${JAR_NAME} dist/ 20 21 - cp config/EXAMPLE-client-config.yaml dist/config/client-config.yaml 21 - - cd dist && jar -cfM ../${ZIP_NAME} ${JAR_NAME} config/ 22 + - cd dist && zip -r ../${ZIP_NAME} ${JAR_NAME} config/ 22 23 artifacts: 23 24 paths: 24 25 - ${ZIP_NAME}