- Clicking on Fruit with Fruit Item in creative will now Age the Frui… #451
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: Gradle Publish to Maven | |
on: | |
push: | |
branches: | |
- 1.20.1 | |
- 1.21.1 | |
- Release | |
jobs: | |
gradle: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: adopt | |
java-version: 21 | |
cache: gradle | |
- name: Store gradle.properties secrets | |
env: | |
MAVEN_REPO_PROPERTIES: ${{ secrets.REPO_LOGIN }} | |
shell: bash | |
run: | | |
mkdir -p ~/.gradle/ | |
echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV | |
echo "${MAVEN_REPO_PROPERTIES}" > ~/.gradle/gradle.properties | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Change wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Execute Gradle build and Publish to Maven | |
run: ./gradlew publish publishAllPublicationsToJTDev-Maven-RepositoryRepository |