update RSMM to v1.14 #25
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 on Pull Request | |
on: | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: temurin | |
- name: Cache Gradle Packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Grant execute permissions to gradlew | |
run: chmod +x gradlew | |
- name: Build gradle | |
env: | |
SKIP_PROMPT: true | |
run: | | |
./gradlew setupCarpetmod | |
./gradlew createRelease | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: carpet-dev-${{ github.event.number }} | |
path: build/distributions/Carpetmod_dev.zip |