Skip to content

Commit

Permalink
fix: deploy code script commands (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
levibostian authored Jul 25, 2022
1 parent 51dc917 commit fe817d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/deploy-code.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [[ "$MODULE_VERSION" == "" ]]; then
exit 1
fi

exec "./gradlew assembleRelease -x :app:assembleRelease"
exec "./gradlew androidSourcesJar javadocJar"
exec "MODULE_VERSION=\"$MODULE_VERSION\" ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository"
./gradlew assembleRelease -x :app:assembleRelease
./gradlew androidSourcesJar javadocJar
MODULE_VERSION="$MODULE_VERSION" ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository

0 comments on commit fe817d1

Please sign in to comment.