Updated Upstream (Paper) #281
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From Tuinity, thanks! | |
# https://github.com/Tuinity/Tuinity/blob/d3a0c9bdacb75e9e87cf70adb3bfac492f037f2d/.github/workflows/build.yml | |
name: Build SparklyPaper | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
# Only run on PRs if the source branch is on someone else's repo | |
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 17 ] | |
fail-fast: true | |
steps: | |
- name: Checkout Git Repository | |
uses: actions/checkout@v2 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
- name: Configure Git | |
run: | | |
git config --global user.email "no-reply@github.com" | |
git config --global user.name "Github Actions" | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Patch SparklyPaper | |
run: | | |
./gradlew applyPatches --stacktrace --no-daemon | |
- name: Build SparklyPaper | |
run: | | |
./gradlew build --stacktrace --no-daemon | |
./gradlew createReobfPaperclipJar --stacktrace --no-daemon | |
./gradlew publishMavenPublicationToPerfectDreamsRepository --stacktrace --no-daemon | |
./gradlew publishDevBundleToPerfectDreamsRepository -PpublishDevBundle --stacktrace --no-daemon | |
env: | |
ORG_GRADLE_PROJECT_PerfectDreamsUsername: ${{ secrets.PERFECTDREAMS_REPO_USERNAME }} | |
ORG_GRADLE_PROJECT_PerfectDreamsPassword: ${{ secrets.PERFECTDREAMS_REPO_PASSWORD }} | |
- name: Archive SparklyPaper Paperclip | |
uses: actions/upload-artifact@v2 | |
with: | |
name: SparklyPaper | |
path: build/libs/sparklypaper-paperclip-*-reobf.jar |