We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ccb63d commit 3098a9fCopy full SHA for 3098a9f
1 file changed
.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: Set up Temurin JDK 21
21
uses: actions/setup-java@v4
22
with:
23
- distribution: 'temurin'
+ distribution: temurin
24
java-version: '21'
25
26
- name: Setup Gradle
@@ -29,13 +29,12 @@ jobs:
29
- name: Make gradlew executable
30
run: chmod +x gradlew
31
32
- # Build the fat jar with our custom task
33
- - name: Build
+ - name: Build (uberJar)
34
run: ./gradlew --no-daemon clean uberJar
35
36
- # Publish the jar as a CI artifact for convenience
37
- - name: Upload artifact
+ - name: Upload build artifact
38
uses: actions/upload-artifact@v4
39
40
- name: modnvote-jar
+ name: modnvote-${{ github.run_number }}
41
path: build/libs/*.jar
+ if-no-files-found: error
0 commit comments