Fix pop up menu distortion #953
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
# Clones the repository which then begins with validating the Gradle Wrapper checksum, | |
# If the checksum completes, the script then sets up the JDK we need and begins compiling the software, | |
# Finally, If the compiled files have been pushed out to the "(something)/build/libs/" directory - It gets uploaded to GitHub. | |
name: Build Figura using Gradle | |
on: [pull_request, push] | |
jobs: | |
build: | |
if: github.actor != 'weblate' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
check-latest: true | |
- name: Build using Gradle | |
run: ./gradlew build | |
- name: Upload Fabric artifacts to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Fabric-Artifacts | |
path: fabric/build/libs/ | |
- name: Upload Forge artifacts to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Forge-Artifacts | |
path: forge/build/libs/ |