Skip to content

Commit

Permalink
Fix(Build): Remove useless .jar artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz committed Dec 4, 2024
1 parent 4bd420d commit 4299214
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/release-new-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ jobs:
# Build app
- name: Build for run tests or static analysis
run: ./gradlew build
- name: Build project APK / AAR / JAR
run: ./gradlew assemble


#####################
Expand Down Expand Up @@ -106,10 +104,6 @@ jobs:
- name: "Rename ${{ env.module_inventory }} AAR"
run: mv ${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release.aar ${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release-v${{ env.tag_name }}.aar

- name: "Rename ${{ env.module_inventory }} JAR"
run: mv ${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources.jar ${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources-v${{ env.tag_name }}.jar


- name: Create Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -121,4 +115,3 @@ jobs:
${{ env.module_java }}/build/outputs/apk/release/${{ env.module_java }}-v${{ env.tag_name }}.apk
${{ env.module_kotlin }}/build/outputs/apk/release/${{ env.module_kotlin }}-v${{ env.tag_name }}.apk
${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release-v${{ env.tag_name }}.aar
${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources-v${{ env.tag_name }}.jar

0 comments on commit 4299214

Please sign in to comment.