Update plugin fabric-loom to v1.14.1 #225
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 project | |
| on: | |
| push: | |
| branches: | |
| - master # run the action on your projects default branch | |
| jobs: | |
| build: | |
| name: Build project and upload artifacts | |
| runs-on: macos-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'corretto' | |
| cache: 'gradle' | |
| - name: Validate Gradle wrapper | |
| uses: gradle/actions/wrapper-validation@v4 | |
| - name: Setup gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build package | |
| run: ./gradlew build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Package | |
| path: build/libs |