-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strider build 'undefined' branch when tag is pushed #74
Comments
Weird, I've experienced the opposite. In the past it would build on tag, but recently (with latest updated) it hasn't triggered on tags. |
I'm trying to use tags or release to trigger customs script, but triggers seems that are not fired. I saw that branch is undefined when hook is grabbed from strider, maybe it could be the problem. Have you some suggestions on this problem? |
It appears this is fixed now. I think it was an issue with Github sending improper/multiple webhooks, and strider interpreting it incorrectly. I do not see this issue now. |
Recent strider + plugin upgrade caused this error. Have not yet determined what caused the breaking change.
When I push a new tag to my repo, strider attempts to build it, but
<%= ref.branch %>
returnsundefined
. Previously, strider would only build on branch pushes and not on new tags.It's also possible this was a change in Github's webooks, but I haven't confirmed that. I tried disabling the 'Create' webhook event (Only 'Pull Request' and 'Push' options set), and it still sends a webhook and attempts to build it.
Note: This is causing some havoc with my build scripts, which expect a valid branch name. I've had to add checks for
undefined
branch in all build scripts so it doesn't cause deployment problems.The text was updated successfully, but these errors were encountered: