feat: implement the getCloneItemStack method for CannedFoodBlock (#530) #614
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: | |
| branches: [ 'main' ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@v4 | |
| - name: Setup JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - name: Cache Gradle | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| .gradle | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('gradle/gradle-wrapper.properties', 'settings.gradle.kts', 'build.gradle.kts', 'gradle.properties') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gradle- | |
| - name: Initialize build environment | |
| run: ./gradlew | |
| - name: Spotless check | |
| run: ./gradlew spotlessCheck | |
| - name: Build | |
| id: build | |
| if: ${{ !cancelled() }} | |
| run: ./gradlew assemble testClasses -x spotlessCheck | |
| - name: Test | |
| if: ${{ steps.build.outcome == 'success' && !cancelled() }} | |
| run: ./gradlew test -x spotlessCheck | |
| # - name: Publish | |
| # if: ${{ github.repository == 'TeamGalacticraft/Galacticraft' && success() }} | |
| # run: ./gradlew publish | |
| # env: | |
| # NEXUS_REPOSITORY_URL: ${{ secrets.NEXUS_RELEASE_URL }} | |
| # NEXUS_USER: ${{ secrets.NEXUS_USER }} | |
| # NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} | |
| - name: Capture build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Galacticraft | |
| path: | | |
| build/libs/ | |
| !build/libs/*-sources.jar | |
| !build/libs/*-javadoc.jar | |
| !build/libs/*-dev.jar |