This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
fix clickGui panel mouse moving #48
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 CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'zulu' | |
- name: Build with Gradle | |
run: chmod +x ./gradlew && ./gradlew setupCiWorkspace && ./gradlew -Dfile.encoding=UTF-8 build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LiquidLunarForge | |
path: build/libs |