Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
- name: Build with Gradle Wrapper
run: ./gradlew build

- name: Build JAR
run: ./gradlew jar

# NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html).
# If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version.
#
Expand All @@ -47,6 +50,20 @@ jobs:
# - name: Build with Gradle 8.9
# run: gradle build


- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.6.2
with:
# Artifact name
name: build
# A file, directory or wildcard pattern that describes what to upload
path: build/libs
# The desired behavior if no files are found using the provided path.
retention-days: 30
overwrite: true
include-hidden-files: false


dependency-submission:

runs-on: ubuntu-latest
Expand Down
Loading