Skip to content

Commit

Permalink
Merge pull request #697 from kusumotolab/stable-gradle-exec2
Browse files Browse the repository at this point in the history
CIでのバージョン解決方法を修正
  • Loading branch information
YoshikiHigo authored Dec 26, 2019
2 parents c3a8a38 + 2e7c1b1 commit 7794007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/check-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GITHUB_TAG_URL_BASE="https://github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJ

# Analyze target version to be release

WANTED_VERSION="$(./gradlew -q print printCurrentVersion)"
WANTED_VERSION="$(cat ./gradle.properties | grep currentVersion | cut -d'=' -f2)"
WANTED_VERSION="$(echo $WANTED_VERSION)" # Trim whitespaces

VERSION_GIT_TAG="v${WANTED_VERSION}"
Expand Down

0 comments on commit 7794007

Please sign in to comment.