From 4b32e2665bc104c19cb0e2952082fe652b0d9f3f Mon Sep 17 00:00:00 2001 From: TheCrazyInsanity <39921530+TheCrazyInsanity@users.noreply.github.com> Date: Mon, 3 Feb 2025 18:01:30 -0500 Subject: [PATCH] I forgot to make it upload artifacts :3c --- .github/workflows/build.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e62d05bb..96d17164a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,13 +38,10 @@ jobs: - name: Build with Gradle Wrapper run: ./gradlew build - # 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. - # - # - name: Setup Gradle - # uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 - # with: - # gradle-version: '8.9' - # - # - name: Build with Gradle 8.9 - # run: gradle build + - name: Upload a Build Artifact + uses: actions/upload-artifact@v4.6.0 + with: + # A file, directory or wildcard pattern that describes what to upload + path: ./build/libs + +