Skip to content

Commit

Permalink
Merge pull request #76 from Foxikle/create-status-checks
Browse files Browse the repository at this point in the history
Create pull_request.yml
  • Loading branch information
Foxikle authored Nov 17, 2024
2 parents ac3d782 + ea92643 commit beebb57
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()))
}
}

Expand Down

0 comments on commit beebb57

Please sign in to comment.