From a22b4c715d60e18187c40fc5f4fb5efcf570f747 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 20 Jun 2021 17:20:38 +0200 Subject: [PATCH] Update target spigot API version for CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c38a19d..9548d04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ 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") + jar_url=$(curl https://hub.spigotmc.org/nexus/content/repositories/snapshots/org/spigotmc/spigot-api/1.17-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 spigot-shaded.jar @sources -d build