Make bundle and gradle builds quiet in deploy.mjs - 2.18 🚀

This commit is contained in:
Brandon Presley 2024-02-11 18:11:03 +13:00
parent 57bc6caffb
commit 6b60c41ac8
3 changed files with 5 additions and 5 deletions

View File

@ -85,8 +85,8 @@ android {
applicationId "com.massive"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 36232
versionName "2.17"
versionCode 36233
versionName "2.18"
}
signingConfigs {
release {

View File

@ -45,6 +45,6 @@ await git.log(['-1']).then(log => {
});
const isWindows = os.platform() === 'win32';
execSync(isWindows ? '.\\gradlew.bat bundleRelease' : './gradlew bundleRelease', { stdio: 'inherit' });
execSync('bundle install', { stdio: 'inherit' });
execSync(isWindows ? '.\\gradlew.bat bundleRelease -q' : './gradlew bundleRelease -q', { stdio: 'inherit' });
execSync('bundle install --quiet', { stdio: 'inherit' });
execSync('bundle exec fastlane supply --aab app/build/outputs/bundle/release/app-release.aab', { stdio: 'inherit' });

View File

@ -1,6 +1,6 @@
{
"name": "massive",
"version": "2.17",
"version": "2.18",
"private": true,
"license": "GPL-3.0-only",
"scripts": {