Hello,
We are using this step within our GitHub workflow, the ping to a remote server after this step sometimes works and sometimes it, doesn't, how can I check further where is the issue?
- name: Connect to Tailscale
uses: tailscale/github-action@v2
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
tags: tag:xxx
version: 1.52.0
- name: ping the server
run: |
ping -c 5 $SSH_HOST
env:
SSH_HOST: ${{ secrets.CICD_SSH_HOST }}