mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-05-09 00:01:20 +00:00
- add run configurations for IDEA / Android Studio - configure CI to use those scripts to build everything: 0.0.0-newci-316 (with desktop/web components)
12 lines
434 B
Bash
Executable File
12 lines
434 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Publish artifact without Android Layout Inspector
|
|
# Should be used is there are errors building it (on Windows, for example)
|
|
# Shouldn't be used for publishing release artifacts
|
|
|
|
cd "$(dirname "$0")"
|
|
. ./prepare
|
|
|
|
pushd ..
|
|
./gradlew publishComposeJb $COMPOSE_DEFAULT_GRADLE_ARGS -x :support:compose:ui:ui-inspection:assembleInspectorJarRelease -x :support:compose:ui:ui-inspection:dexInspectorRelease "$@" || exit 1
|
|
popd |