Skip to content

Commit

Permalink
Add CLI zip into release
Browse files Browse the repository at this point in the history
  • Loading branch information
egorikftp committed Nov 18, 2024
1 parent 4ae0bb5 commit e6973d4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ jobs:
if: env.IS_SNAPSHOT == 'false'
run: ./gradlew publishPlugin

- name: Build CLI
run: ./gradlew buildCLI

- name: Delete release if exist then create a new one
run: |
gh release view ${{ env.VERSION_NAME }} && gh release delete ${{ env.VERSION_NAME }} -y --cleanup-tag
Expand All @@ -86,4 +89,4 @@ jobs:
gh release view ${{ env.VERSION_NAME }}-SNAPSHOT && gh release delete ${{ env.VERSION_NAME }}-SNAPSHOT -y --cleanup-tag
fi
gh release create ${{ env.VERSION_NAME }} idea-plugin/build/distributions/*-signed.zip --generate-notes $PRE_RELEASE_FLAG
gh release create ${{ env.VERSION_NAME }} idea-plugin/build/distributions/*-signed.zip cli/build/distributions/*.zip --generate-notes $PRE_RELEASE_FLAG

0 comments on commit e6973d4

Please sign in to comment.