diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-26 22:51:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-26 22:51:49 +0100 |
| commit | 0798325688049a87df02910ab9141c0b1c13ffcb (patch) | |
| tree | dea96c62867eddb88ac9df834171d4ee8d51c5ab /.github | |
| parent | da2c83cceb4bf6724ae1d9a6dfd939aca795cb19 (diff) | |
Make tailscale pings work despite NATs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deploy.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 89f5117..843bdf6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -149,7 +149,7 @@ jobs: tags: tag:ci - name: Wait for reachability run: | - until tailscale ping ${{ secrets.TARGET_HOST }}; do + until tailscale ping --until-direct=false ${{ secrets.TARGET_HOST }}; do echo "Waiting for Tailscale to connect..." sleep 2 done |
