Use latest mc-publish version formats #189
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: Development Builds | |
on: [push, pull_request] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: 17 | |
- 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 permission to gradlew | |
run: chmod +x gradlew | |
- name: Build 1.17+ | |
run: ./gradlew build | |
- name: Build 1.14.4 - 1.16.5 | |
run: ./gradlew build -Dbuild16=true | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Compiled artifacts for ${{ github.sha }} | |
path: | | |
fabric/build/libs | |
forge/build/libs |