Fixed some bugs and added QoL features #93
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '8' | |
- name: Build with Gradle | |
run: ./gradlew nightlyBuild | |
- name: Upload Nightly Build | |
uses: actions/upload-artifact@v2 | |
if: success() | |
with: | |
name: skript-gui-nightly | |
path: build/libs/skript-gui-nightly.jar |