Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cdmbase committed Feb 17, 2018
1 parent 172aae1 commit f6396ff
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
24 changes: 24 additions & 0 deletions ISSUES.md
@@ -0,0 +1,24 @@
Resolving tags conflicts when running `lerna publish`
----
```
$ git tag
v0.0.1
v0.0.4
```
- remove the tag locally
```
$ git tag -d v0.0.4
Deleted tag 'v0.0.4' (was c34157b)
$ git tag -d v0.0.1
Deleted tag 'v0.0.1' (was edfaa93)
```
- remove the tag remotely
```
$ git push origin :refs/tags/v0.0.4
To https://github.com/cdmbase/ide-stack.git
- [deleted] v0.0.4
$ git push origin :refs/tags/v0.0.1
To https://github.com/cdmbase/ide-stack.git
- [deleted] v0.0.1
```

2 changes: 0 additions & 2 deletions Jenkinsfile
Expand Up @@ -14,8 +14,6 @@ pipeline {
stage ('dependencies'){
steps{
sh """
#npm install --global lerna
lerna clean --yes
npm install
npm run lerna
"""
Expand Down

0 comments on commit f6396ff

Please sign in to comment.