From 4dc483575881dbcd7f6da18dd2ab36ae567c296d Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 8 May 2021 20:25:59 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4649298..ca9bebc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,8 +36,10 @@ jobs: - name: Compile run: | mkdir -p build + jar_url=$(curl https://hub.spigotmc.org/nexus/content/repositories/snapshots/org/spigotmc/spigot-api/1.16.5-R0.1-SNAPSHOT/ | grep "shaded.jar\"" | tail -1 | sed "s/.*href=\"\(.*\)\".*/\1/g") + curl $jar_url > spigot-shaded.jar find -name "*.java" > sources - javac -cp lib/spigot-api-1.16.5-R0.1-20210421.073640-53.jar:lib/spigot-api-1.16.5-R0.1-20210421.073640-53-shaded.jar @sources -d build + javac -cp spigot-shaded.jar @sources -d build cp res/* build rm sources cd build