Skip to content

Commit

Permalink
fix: remove couple v (datreeio#659)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimabru authored Jun 2, 2022
1 parent 9148668 commit 5da48a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/deploy_release_candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ else
nextVersion=$(echo $latestRcTag | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g')
fi

export DATREE_BUILD_VERSION=v$nextVersion-rc
export DATREE_BUILD_VERSION=$nextVersion-rc
echo $DATREE_BUILD_VERSION

git tag $DATREE_BUILD_VERSION -a -m "Generated tag from TravisCI for build $TRAVIS_BUILD_NUMBER"
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git checkout "$release_tag-rc"
git tag $release_tag -a -m "Generated tag from manual TravisCI for production build $TRAVIS_BUILD_NUMBER"
git push origin $release_tag # TODO: check if goreleaser pushes the tag itself (so no need to push here)

export DATREE_BUILD_VERSION=v$release_tag
export DATREE_BUILD_VERSION=$release_tag
echo $DATREE_BUILD_VERSION

bash ./scripts/custom_changelog.sh
Expand Down

0 comments on commit 5da48a8

Please sign in to comment.