Skip to content

Commit

Permalink
Try to eliminate .jar.zip
Browse files Browse the repository at this point in the history
  • Loading branch information
nsychev committed Nov 13, 2024
1 parent 3fae86a commit e7d5153
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ jobs:
uses: gradle/actions/setup-gradle@v4

- name: Build with gradle
run: ./gradlew --no-daemon -Pnpm.download=false shadowJar
run: |
./gradlew --no-daemon -Pnpm.download=false shadowJar
(echo -n artifactPath=; find build/libs/ -type f) >> $GITHUB_ENV
- uses: actions/upload-artifact@v4
with:
name: balloons.jar
path: build/libs/balloons-*.jar
path: ${{ env.artifactPath }}
retention-days: 14
compression-level: 0

0 comments on commit e7d5153

Please sign in to comment.