Skip to content

Commit

Permalink
Merge pull request #542 from ah-OOG-ah/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Roadhog360 authored Oct 31, 2024
2 parents bbef2ca + fdf3458 commit eafd973
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,27 @@ jobs:
- name: Compile the mod
run: ./gradlew --build-cache --info --stacktrace assemble

- name: Attach compilation artifacts
- name: Attach user artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository_id }}-build-libs
path: build/libs/
path: |
build/libs/
!build/libs/*-api.jar
!build/libs/*-dev.jar
!build/libs/*-dev-preshadow.jar
!build/libs/*-sources.jar
retention-days: 90

- name: Attach dev artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.repository_id }}-build-dev-libs
path: |
build/libs/*-api.jar
build/libs/*-dev.jar
build/libs/*-dev-preshadow.jar
build/libs/*-sources.jar
retention-days: 90

- name: Attach gradle reports
Expand Down

0 comments on commit eafd973

Please sign in to comment.