Skip to content

Commit

Permalink
Update gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed May 6, 2024
1 parent de9f5d2 commit a8287fa
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,16 @@ jobs:
- name: Build with Gradle
run: ./gradlew :app${{matrix.version}}:build
- name: Upload Artifact
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@main
with:
name: compiled-artifact-${{matrix.version}}
path: ./app${{matrix.version}}/build/libs/*.jar
merge:
runs-on: windows-latest
needs: build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@main
with:
name: compiled-artifact
path: ./app${{matrix.version}}/build/libs/*.jar
delete-merged: true

0 comments on commit a8287fa

Please sign in to comment.