2020-08-09 10:59:21 +02:00
|
|
|
set -e
|
|
|
|
#!/bin/sh
|
|
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
|
|
|
./gradlew multiplatform-crypto-api:build
|
2020-08-09 15:42:45 +02:00
|
|
|
./gradlew multiplatform-crypto:publishIosArm32PublicationToSnapshotRepository \
|
|
|
|
multiplatform-crypto:publishIosArm64PublicationToSnapshotRepository \
|
2020-08-09 16:26:40 +02:00
|
|
|
multiplatform-crypto:publishIosX64PublicationToSnapshotRepository
|
2020-08-09 10:59:21 +02:00
|
|
|
set +e
|