You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
When I execute the deploy tasks it seems like there is some kind of race condition because sometimes the git push origin master --tags pushes the commit with the version bump but misses the tag.
I suspect the gulp callback is fired too early. You could try chaning the lines git.tag(tag, label, opts); cb(null, file) to git.tag(tag, label, opts, cb) so the gulp-callback is triggered when the tagging is done.
The text was updated successfully, but these errors were encountered:
As discussed in #8
When I execute the deploy tasks it seems like there is some kind of race condition because sometimes the git push origin master --tags pushes the commit with the version bump but misses the tag.
I suspect the gulp callback is fired too early. You could try chaning the lines
git.tag(tag, label, opts); cb(null, file)
togit.tag(tag, label, opts, cb)
so the gulp-callback is triggered when the tagging is done.The text was updated successfully, but these errors were encountered: