mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-26 19:44:16 +01:00
Re-added .aab builds for Android
This commit is contained in:
parent
282b22b784
commit
b97e2f3d70
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -256,4 +256,4 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
asset_paths: '["./**/*.tar.*","./**/*.AppImage","./**/*.zip","./**/*.apk"]'
|
asset_paths: '["./**/*.tar.*","./**/*.AppImage","./**/*.zip","./**/*.apk","./**/*.aab",]'
|
||||||
|
@ -268,6 +268,11 @@ android.applicationVariants.configureEach {
|
|||||||
include("*.apk")
|
include("*.apk")
|
||||||
into(layout.buildDirectory.dir("bundle"))
|
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) }
|
tasks.named("bundle${capitalizedName}").configure { finalizedBy(copyTask) }
|
||||||
|
Loading…
Reference in New Issue
Block a user