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