diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-26 22:52:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-26 22:52:10 +0100 |
| commit | 731fcdb659bd5de1ab973f875861131f57a390f8 (patch) | |
| tree | 037efccecd6ead42d37bb7ab4e97b00bdc297fb4 | |
| parent | 9b46a6a20eef6d05b609f87538d5bdb275850b47 (diff) | |
Make tailscale pings work despite NATs
| -rw-r--r-- | .github/workflows/production.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index aefdbb3..c654f27 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -49,7 +49,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 |
