🏷 Add Licensing Info To quilt.mod.json #43
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
# | |
# This workflow pulls from LambdAurora's LambdaBetterGrass and Sodium | |
# | |
name: Gradle Build | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ 17 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
- name: Build With Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build --parallel --stacktrace | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Artifacts | |
path: ./build/libs/*.jar |