Mines: Minor change: Simplify how the command is ran so there is one … #2436
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: Prison Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Gradlew permission | |
run: chmod +x gradlew | |
- name: Build | |
run: ./gradlew build | |
- name: Upload Jar | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Prison | |
path: prison-spigot/build/libs/ |