Skip to content

Commit

Permalink
Update gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Jan 29, 2024
1 parent 4da6421 commit 83c1de7
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ permissions:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
version: [ '1', '2', '3', '4' ]
steps:
- uses: actions/checkout@main
- name: Set up JDK 21
Expand All @@ -21,13 +24,9 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@main
with:
arguments: build
arguments: :appLab${{matrix.version}}:build
- name: Upload Artifact
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v3.1.3
with:
name: compiled-artifact
path: |
./appLab1/build/libs/*.jar
./appLab2/build/libs/*.jar
./appLab3/build/libs/*.jar
./appLab4/build/libs/*.jar
path: ./appLab${{matrix.version}}/build/libs/*.jar

0 comments on commit 83c1de7

Please sign in to comment.