| | |
| | | - mvn -B -DtagNameFormat="$git_version" -DreleaseVersion="$git_version" -DignoreSnapshots=true -DpushChanges=false -DscmCommentPrefix="[ci skip] $git_version_last->$git_version " -DskipTests -Darguments=-DskipTests -Dresume=false -P distribution release:prepare |
| | | - git push --quiet --force https://$GITHUBKEY@github.com/$TRAVIS_REPO_SLUG.git >/dev/null 2>&1 |
| | | - git push --quiet --force https://$GITHUBKEY@github.com/$TRAVIS_REPO_SLUG.git $git_version >/dev/null 2>&1 |
| | | - export compare="$(git rev-list -n 1 $git_version_last)...$(git rev-list -n 1 $git_version)" |
| | | deploy: |
| | | provider: releases |
| | | draft: false |
| | |
| | | - git fetch -t |
| | | - export git_version_last="$(git describe --abbrev=0 --tags)" |
| | | - export git_version="$(echo $git_version_last | awk -F . '{ printf "%d.%d.%d", $1,$2,$3 + 1}')" |
| | | - export compare="$(git rev-list -n 1 $git_version_last)...$(git rev-list -n 1 $git_version)" |
| | | - env | sort |
| | | - git log `git describe --tags --abbrev=0 HEAD^`..HEAD --oneline |
| | | install: |