Merge branch '1.21.9-multiloader' into 1.21.6-multiloader #267
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: | |
| paths-ignore: | |
| - '.github/**' | |
| - '*.md' | |
| pull_request: | |
| paths-ignore: | |
| - '.github/**' | |
| - '*.md' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v3 | |
| with: | |
| cache-read-only: false | |
| - name: Change wrapper permissions | |
| run: chmod +x ./gradlew | |
| - name: Run build with Gradle Wrapper | |
| run: ./gradlew build | |
| - name: Upload built JARs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: skin-restorer-artifacts | |
| path: ./*/build/libs/*.jar |