Skip to content

Commit

Permalink
Remove generation of small jars, as they aren't really that useful
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmans0n committed Dec 15, 2023
1 parent 5442836 commit 019a294
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/update-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 019a294

Please sign in to comment.