diff --git a/.ci/pack.sh b/.ci/pack.sh index 744c1ba8c..21c0fbb5c 100755 --- a/.ci/pack.sh +++ b/.ci/pack.sh @@ -46,20 +46,8 @@ function pack_artifacts() { tar czvf "$ARCHIVE_FULL_NAME" "$REV_NAME" fi mv "$ARCHIVE_FULL_NAME" artifacts/ - - if [ -z "$SKIP_7Z" ]; then - # Create .7z - ARCHIVE_FULL_NAME="$ARCHIVE_NAME.7z" - mv "$REV_NAME" "$RELEASE_NAME" - 7z a "$ARCHIVE_FULL_NAME" "$RELEASE_NAME" - mv "$ARCHIVE_FULL_NAME" artifacts/ - - # Clean up created release artifacts directory. - rm -rf "$RELEASE_NAME" - else - # Clean up created rev artifacts directory. - rm -rf "$REV_NAME" - fi + # Clean up created rev artifacts directory. + rm -rf "$REV_NAME" } if [ -n "$UNPACKED" ]; then diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f1570fbd5..ce5945fb0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -284,4 +284,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - asset_paths: '["./**/*.tar.*","./**/*.AppImage","./**/*.7z","./**/*.zip","./**/*.apk","./**/*.aab"]' + asset_paths: '["./**/*.tar.*","./**/*.AppImage","./**/*.zip","./**/*.apk"]' diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index f8c67ba76..cba3bb7f9 100644 --- a/src/android/app/build.gradle.kts +++ b/src/android/app/build.gradle.kts @@ -278,11 +278,6 @@ android.applicationVariants.configureEach { include("*.apk") into(layout.buildDirectory.dir("bundle")) } - project.copy { - from(layout.buildDirectory.dir("outputs/bundle/${variant.name}")) - include("*.aab") - into(layout.buildDirectory.dir("bundle")) - } } } tasks.named("bundle${capitalizedName}").configure { finalizedBy(copyTask) }