aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-11-26 22:51:49 +0100
committerGitHub <noreply@github.com>2025-11-26 22:51:49 +0100
commit0798325688049a87df02910ab9141c0b1c13ffcb (patch)
treedea96c62867eddb88ac9df834171d4ee8d51c5ab
parentda2c83cceb4bf6724ae1d9a6dfd939aca795cb19 (diff)
Make tailscale pings work despite NATs
-rw-r--r--.github/workflows/deploy.yml2
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