This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
Update version to 2.5.0 #1555
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
name: Build LabyAddon | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'hotfix/**' | |
pull_request: | |
branches: | |
- 'develop' | |
- 'hotfix/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 🔥 Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '17' | |
- name: 🔑 Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: 🔨 Build with Gradle | |
run: ./gradlew build --full-stacktrace |