forked from phoedos/pmd
29 lines
746 B
Bash
29 lines
746 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
source .travis/logger.sh
|
|
source .travis/common-functions.sh
|
|
source .travis/github-releases-api.sh
|
|
source .travis/sourceforge-api.sh
|
|
|
|
VERSION=$(./mvnw -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.5.0:exec)
|
|
log_info "PMD Release ${VERSION}"
|
|
|
|
if ! travis_isPush; then
|
|
log_info "Not publishing release, since this is not a push!"
|
|
exit 0
|
|
fi
|
|
|
|
if [[ "${VERSION}" == *-SNAPSHOT || "${TRAVIS_TAG}" == "" ]]; then
|
|
log_info "Not publishing release, since this is not a release!"
|
|
exit 0
|
|
fi
|
|
|
|
|
|
# Publish github release
|
|
gh_releases_getLatestDraftRelease
|
|
GH_RELEASE="$RESULT"
|
|
|
|
gh_release_publishRelease "$GH_RELEASE"
|
|
sourceforge_selectDefault "${VERSION}"
|