Browse Source

fix(tools): use correct path when calling the health check module (#41498)

Use the correct path for health check module
Oleksandr 2 years ago
parent
commit
9ddc301b21
1 changed files with 4 additions and 0 deletions
  1. 4 0
      .github/actions/setup-sentry/action.yml

+ 4 - 0
.github/actions/setup-sentry/action.yml

@@ -205,4 +205,8 @@ runs:
 
         docker ps -a
 
+        # This is necessary when other repositories (e.g. relay) want to take advantage of this workflow
+        # without needing to fork it. The path needed is the one where tools are located
+        cd "$WORKDIR"
         python3 -u -S -m tools.devservices_healthcheck
+        cd -