@Kubuxu looks like you pushed old tag into this repo.
Remove this tag by running git tag -d v1.0.2 && git push origin :v1.0.2
This probably happened because your local git repositories still have old tags.
You can remove all of them in one go by running:
find libp2p multiformats ipfs -maxdepth 1 -mindepth 1 -type d | while read dir; do; cd $dir; git fetch --prune origin '+refs/tags/*:refs/tags/*'; cd ../..; done in $GOPATH/src/github.com/.
Woof Woof :dog:
@Kubuxu looks like you pushed old tag into this repo. Remove this tag by running
git tag -d v1.0.2 && git push origin :v1.0.2
This probably happened because your local git repositories still have old tags. You can remove all of them in one go by running:
find libp2p multiformats ipfs -maxdepth 1 -mindepth 1 -type d | while read dir; do; cd $dir; git fetch --prune origin '+refs/tags/*:refs/tags/*'; cd ../..; done
in$GOPATH/src/github.com/
.Yours truly, with :poodle:, Tag Dog.