From 278cc577517939d968783e54d8c3a0f840124165 Mon Sep 17 00:00:00 2001 From: Derek Date: Fri, 11 Apr 2025 22:58:10 +0000 Subject: [PATCH] Update .forgejo/workflows/compile.yml --- .forgejo/workflows/compile.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/compile.yml b/.forgejo/workflows/compile.yml index 1f2ac58..6e76301 100644 --- a/.forgejo/workflows/compile.yml +++ b/.forgejo/workflows/compile.yml @@ -1,5 +1,6 @@ name: Compile&Test +on: [push] jobs: build: runs-on: ubuntu-24.04 @@ -40,9 +41,9 @@ jobs: - name: Compile the mod run: ./gradlew --build-cache --info --stacktrace assemble - - name: Attach compilation artifacts + - name: Attach .jar artifacts uses: https://github.com/actions/upload-artifact@v3 with: - name: ${{ github.repository_id }}-build-libs - path: build/libs/ + name: ${{ github.repository_id }}-jars + path: build/libs/*.jar retention-days: 90 \ No newline at end of file