File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,9 @@ if [[ $VERSION == $LAST_GIT_TAG ]]; then
39
39
exit 1
40
40
fi
41
41
42
- # Create docs
43
- # ./create-docs.sh
44
- # if [[ $? -ne 0 ]]; then
45
- # echo "error: There was an error creating the docs."
46
- # exit 1
47
- # fi
42
+ # Tag the release in git
43
+ # XXX this is wrong; needs to be semver sorted as my other scripts are
44
+ git tag -a v$VERSION
48
45
49
46
# #########################
50
47
# GENERATE RELEASE BUILD #
@@ -60,7 +57,7 @@ read -p "Next, make sure this repo is clean and up to date. We will be kicking o
60
57
# the next line installs the output of build.gradle into (local) maven, but does not tag it in git
61
58
# mvn install:install-file -Dfile=library/build/outputs/aar/library-release.aar -DgroupId=com.firebase -DartifactId=firebase-ui -Dversion=$VERSION -Dpackaging=aar
62
59
# the next line signs and deploys the aar file to maven
63
- mvn gpg:sign-and-deploy-file -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DrepositoryId=ossrh -DpomFile=library/pom.xml -Dfile=library/build/outputs/aar/library-release .aar -Dversion=$VERSION
60
+ # mvn gpg:sign-and-deploy-file -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DrepositoryId=ossrh -DpomFile=library/pom.xml -Dfile=library/build/outputs/aar/library-debug .aar -Dversion=$VERSION
64
61
65
62
if [[ $? -ne 0 ]]; then
66
63
echo " error: Error building and releasing to maven."
You can’t perform that action at this time.
0 commit comments