Revert "Misc Patches and everything else" #155
This file contains hidden or 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
| name: build | |
| on: [ pull_request, push ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| PUBLISH_SUFFIX: snapshots | |
| MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
| MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup JDK (Java 17) | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| - name: gradlew Permission Grant | |
| run: chmod +x gradlew | |
| - name: Build w/ Gradle | |
| run: ./gradlew buildOrPublish | |
| - name: Capture Build Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Artifacts | |
| path: build/libs/ |