Update HWIDThing.java #118
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: Java CI with Gradle | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Set up Minecraft workspace | |
run: ./gradlew setupDecompWorkspace | |
- name: Build with Gradle | |
run: ./gradlew build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: NsmPhobos | |
path: build/libs/*-release.jar | |
- name: Cleanup Gradle Cache | |
run: rm -rf ~/.gradle/caches/ |