From 019a29469128e4dca117efecc5e061ac2fd86c2b Mon Sep 17 00:00:00 2001 From: Nacho Lopez Date: Fri, 15 Dec 2023 14:46:56 +0100 Subject: [PATCH] Remove generation of small jars, as they aren't really that useful --- .github/workflows/update-release.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/update-release.yaml b/.github/workflows/update-release.yaml index 2e39780e..6456035d 100644 --- a/.github/workflows/update-release.yaml +++ b/.github/workflows/update-release.yaml @@ -53,27 +53,3 @@ jobs: tag: v${{ env.VERSION }} asset_name: detekt-compose-${{ env.VERSION }}-all.jar overwrite: true - - - name: Build the normal jars - if: success() && !endsWith(env.VERSION, '-SNAPSHOT') - run: ./gradlew clean :rules:ktlint:build :rules:detekt:build --rerun-tasks - - - name: Upload ktlint binaries to release - if: success() && !endsWith(env.VERSION, '-SNAPSHOT') - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: rules/ktlint/build/libs/ktlint-${{ env.VERSION }}.jar - tag: v${{ env.VERSION }} - asset_name: ktlint-compose-${{ env.VERSION }}.jar - overwrite: true - - - name: Upload detekt binaries to release - if: success() && !endsWith(env.VERSION, '-SNAPSHOT') - uses: svenstaro/upload-release-action@v2 - with: - repo_token: ${{ secrets.GITHUB_TOKEN }} - file: rules/detekt/build/libs/detekt-${{ env.VERSION }}.jar - tag: v${{ env.VERSION }} - asset_name: detekt-compose-${{ env.VERSION }}.jar - overwrite: true