Skip to content

Commit

Permalink
[#631] fix regex for tagging (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-semenets authored and Dmitrii Suslov committed Dec 3, 2018
1 parent 4d8474a commit 58fbc71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
- Replace virtualenv with pipenv [\#155](https://github.com/legion-platform/legion/issues/155)

### Fixed
- Fix release tagging [\#631](https://github.com/legion-platform/legion/issues/631)
- Legionctl freezes with verbose flag [\#383](https://github.com/legion-platform/legion/issues/383)
- Pin ipykernel version 4.9.0 [\#501](https://github.com/legion-platform/legion/issues/501)
- Remove sleeps in regression tests [\#475](https://github.com/legion-platform/legion/issues/475)
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pipeline {
if (params.PushGitTag){
print('Set Release tag')
sh """
if [ `git tag |grep -w ${params.ReleaseVersion}` ]; then
if [ `git tag |grep -x ${params.ReleaseVersion}` ]; then
if [ ${params.ForceTagPush} = "true" ]; then
echo 'Removing existing git tag'
git tag -d ${params.ReleaseVersion}
Expand Down

0 comments on commit 58fbc71

Please sign in to comment.