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
hotfix: don't early exit with error if root is not a git dir (#224)
* hotfix: don't early exit with error if root is not a git dir
This broke reporting workflow in a case where artifact was being reported from a docker container.
Previously, Fetching head manually was done in the end, after checking all env variables. In the last change, we were still doing an early exit
when the git rev parse command threw an error, not allowing the flow to reach till extracting git commit from env variable set in docker container.
This change restores the previous workflow.
* move GIT_COMMIT_SHA env lookup to the top
* don't make another env lookup call
0 commit comments