diff --git a/.github/workflows/dev-jar.yml b/.github/workflows/dev-jar.yml new file mode 100644 index 0000000..5bac521 --- /dev/null +++ b/.github/workflows/dev-jar.yml @@ -0,0 +1,32 @@ +name: Build DEV Jars + +on: [push, pull_request] + +jobs: + build_dev_jars: + name: Build DEV jars + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup JDK + uses: actions/setup-java@v2 + with: + distribution: 'adopt' + java-version: '8' + - name: Make gradlew executable + run: chmod +x ./gradlew + - name: Build with Gradle + run: | + ./gradlew shadowJar snapshotVersion + git_hash=$(git rev-parse --short "$GITHUB_SHA") + echo "git_hash=$git_hash" >> $GITHUB_ENV + echo "snapshotVersion=$(cat build/versions/snapshot.txt)" >> $GITHUB_ENV + echo "artifactPath=$(pwd)/build/libs" >> $GITHUB_ENV + - name: Upload Plugin jar + uses: actions/upload-artifact@v3 + with: + name: SimpleJoinMessage-${{ env.snapshotVersion }}-${{ env.git_hash }}.jar + path: ${{ env.artifactPath }}/SimpleJoinMessage-${{ env.snapshotVersion }}.jar \ No newline at end of file diff --git a/build.gradle b/build.gradle index 50fdb70..449e477 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,5 @@ +import java.nio.file.Files + plugins { id 'com.github.johnrengelman.shadow' version '7.1.2' id 'kr.entree.spigradle' version '2.4.2' @@ -39,6 +41,10 @@ repositories { url = "https://s01.oss.sonatype.org/content/repositories/snapshots/" } + maven { + url = "https://repo.fantasyrealms.net/releases" + } + maven { url 'https://jitpack.io' } //Add your repositories here @@ -131,3 +137,17 @@ tasks { relocate("kotlin", "${libsPackage}.kotlin") } } + +abstract class PrintSnapshotVersionTask extends DefaultTask { + @TaskAction + def print() { + File versionsDir = project.file("$project.buildDir/versions") + File textFile = project.file("$project.buildDir/versions/snapshot.txt") + versionsDir.mkdirs() + Files.deleteIfExists(textFile.toPath()) + textFile.createNewFile() + textFile << "$project.version" + } +} + +tasks.register('snapshotVersion', PrintSnapshotVersionTask)