Update .forgejo/workflows/compile.yml
All checks were successful
Compile&Test / build (push) Successful in 44s

This commit is contained in:
Derek 2025-04-11 22:58:10 +00:00
parent 50c49625d4
commit 278cc57751

View file

@ -1,5 +1,6 @@
name: Compile&Test name: Compile&Test
on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
@ -40,9 +41,9 @@ jobs:
- name: Compile the mod - name: Compile the mod
run: ./gradlew --build-cache --info --stacktrace assemble run: ./gradlew --build-cache --info --stacktrace assemble
- name: Attach compilation artifacts - name: Attach .jar artifacts
uses: https://github.com/actions/upload-artifact@v3 uses: https://github.com/actions/upload-artifact@v3
with: with:
name: ${{ github.repository_id }}-build-libs name: ${{ github.repository_id }}-jars
path: build/libs/ path: build/libs/*.jar
retention-days: 90 retention-days: 90