Bump adventureVersion from 4.17.0 to 4.19.0 (#30) #66
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 LoginLocationFix | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: "github.actor != 'dependabot[bot]'" | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Setup java | |
| uses: actions/setup-java@main | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Release Artifacts | |
| uses: marvinpinto/action-automatic-releases@master | |
| with: | |
| title: "LoginLocationFix v1.4" | |
| automatic_release_tag: "build" | |
| repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
| files: "build/libs" | |
| prerelease: false |