diff --git a/.github/workflows/ni.yaml b/.github/workflows/ni.yaml index f252f0f..6108e19 100644 --- a/.github/workflows/ni.yaml +++ b/.github/workflows/ni.yaml @@ -22,7 +22,7 @@ jobs: components: 'native-image' - name: Build native-image on Macos - run: native-image -jar ./build/libs/discocli-17.0.12-SNAPSHOT.jar --no-server -H:Name=discocli --no-fallback --enable-http --enable-https + run: native-image -jar ./build/libs/discocli-17.0.12-SNAPSHOT-fat.jar --no-server -H:Name=discocli --no-fallback --enable-http --enable-https - name: Upload binary uses: actions/upload-artifact@v2 @@ -52,7 +52,7 @@ jobs: components: 'native-image' - name: Build native-image on Linux - run: native-image -jar ./build/libs/discocli-17.0.12-SNAPSHOT.jar --no-server -H:Name=discocli --no-fallback --static --enable-http --enable-https + run: native-image -jar ./build/libs/discocli-17.0.12-SNAPSHOT-fat.jar --no-server -H:Name=discocli --no-fallback --static --enable-http --enable-https - name: Upload binary uses: actions/upload-artifact@v2 @@ -82,7 +82,7 @@ jobs: components: 'native-image' - name: Build native-image on Windows - run: native-image.cmd -jar ".\build\libs\discocli-17.0.12-SNAPSHOT.jar" --no-server -H:Name=discocli --no-fallback --static --enable-http --enable-https + run: native-image.cmd -jar ".\build\libs\discocli-17.0.12-SNAPSHOT-fat.jar" --no-server -H:Name=discocli --no-fallback --static --enable-http --enable-https - name: Upload binary uses: actions/upload-artifact@v2 diff --git a/build.gradle b/build.gradle index 9f3966b..0f360ff 100644 --- a/build.gradle +++ b/build.gradle @@ -5,8 +5,8 @@ plugins { id 'application' id 'com.github.johnrengelman.shadow' version '7.1.2' id 'net.nemerosa.versioning' version '2.15.1' - id 'org.jreleaser' version '1.0.0-RC1' - id 'org.jreleaser.jdks' version '1.0.0-RC1' + id 'org.jreleaser' version '1.0.0-RC2' + id 'org.jreleaser.jdks' version '1.0.0-RC2' } description = 'Disco CLI is a command line interface for the foojay.io Disco API'