Bump net.kyori:adventure-platform-bukkit from 4.3.4 to 4.4.1 #109
Workflow file for this run
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 RandomSpawnPlus5 | |
| on: [ push ] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| if: "github.actor != 'dependabot[bot]'" | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@main | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build | |
| run: ./gradlew clean build | |
| - name: Release RandomSpawnPlus5 | |
| uses: marvinpinto/action-automatic-releases@master | |
| with: | |
| title: "RandomSpawnPlus5 v5.1.0-SNAPSHOT" | |
| automatic_release_tag: "5.1.0-SNAPSHOT" | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| files: "build/libs/*.jar" | |
| prerelease: true |