chore: dependencies + gradle wrapper update + use Java 21 and 21 in CI #37
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: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| project: [ 'admin', 'bedtime', 'core', 'enchantments', 'permissions', 'portals', 'regions', 'trifles', 'velocity' ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 25 | |
| distribution: 'temurin' | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| - name: Gradle build | |
| run: | | |
| cd vane-${{ matrix.project }} | |
| gradle build | |
| # Get the Git hash | |
| git_hash=$(git rev-parse --short "$GITHUB_SHA") | |
| echo "git_hash=$git_hash" >> $GITHUB_ENV | |
| - name: Upload JAR | |
| if: ${{ github.event_name != 'pull_request'}} | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: vane-${{ matrix.project }}-${{ env.git_hash }}.jar | |
| path: target/vane-${{ matrix.project }}-*.jar |