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
Avoid running "Publish Tester Build" workflow on tag push
In order to provide coverage for projects using release branches, the "Publish Tester Build" workflow has a `create`
event trigger. This trigger is intended to cause the workflow to run on the creation of a release branch.
The same `create` event also occurs when a tag is pushed to the repository. There is no need to generate a tester build
for tags because these are only made after the project is in a fully tested state and the tag push will trigger a
release build that makes a generated tester build superfluous anyway. For this reason, and because the triggering of the
tester build on this event can cause problems in some project, the workflow is configured to skip the generation of the
tester build when it was triggered by a tag push.
0 commit comments