diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 00000000..cd3acb06 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,23 @@ +name: Gradle Compile Check + +on: + pull_request: + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + distribution: 'zulu' + java-version: '21' + + - run: chmod +x gradlew + + - name: Assemble + run: ./gradlew assemble diff --git a/README.md b/README.md index 71d64d4d..d8e891c8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Foxikle's NPC plugin. This plugin supports exclusivley 1.20.2! -## Support [here](discord.gg/Arp6A6ue3u); +## Support [here](https://discord.gg/Arp6A6ue3u); Navigate to the `get-roles` channel and pickup the plugin access role. From there make a forum post and I will try and help you as soon as I can. ## Bug reports diff --git a/build.gradle.kts b/build.gradle.kts index 2eb3720a..bc91b6cf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -127,7 +127,8 @@ tasks { shadowJar { archiveClassifier.set("") relocate("org.bstats", "dev.foxikle.dependencies.bstats") - destinationDirectory.set(file(providers.gradleProperty("plugin_dir").get())) + // This is used to place the file into a test server's plugin directory. + //destinationDirectory.set(file(providers.gradleProperty("plugin_dir").get())) } }