github-action
github-action copied to clipboard
A GitHub Action to connect your workflow to your Tailscale network.
Allows setting the latest version to `latest` which will grab the latest version of tailscale. The default remains unchanged Note: this updates the actual action script to find the latest...
We have multiple repos using the v2 and v3 action versions. They are both using 1.82.5 and are consistently failing with: ``` Run echo "TAILSCALE_LATEST=$(curl -s "https://pkgs.tailscale.com/stable/?mode=json" | jq -r...
My config ``` - name: Install Tailscale uses: tailscale/github-action@v3 with: oauth-client-id: $TS_OAUTH_CLIENT_ID oauth-secret: $TS_OAUTH_SECRET tags: tag:ci version: 1.80.2 ``` Error: curl: (92) HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR...
This "Setup Tailscale" step always seems to take around two minutes to complete, which is suspicious because I notice there is a `TIMEOUT: 2m` variable in there: https://github.com/simonw/scrape-doge-gov/blob/239805970ea155976b111b1d1671c5f64c9d8a84/.github/workflows/scrape.yml#L33-L39 ```yaml -...
We are using the Tailscale action in our GitHub Actions workflow. Recently, we've started receiving an error stating that we cannot reach the remote host through Tailscale, as shown in...
Intermittent failures to fetch the tailscale package seem to be an HTTP/2 issue. HTTP/2 isn't doing anything better than HTTP/1.1 for fetching a single file so why not try downgrading...
Can the action have a post run cleanup task that runs `tailscale logout`?
1. From github action Run tailscale/github-action@v2 with: oauth-client-id: *** oauth-secret: *** tags: tag:ci kubeconfig configured for "tailscale-operator-testing" helm upgrade --install persistent-test ./persistent-test \ --namespace testing \ --set database.enabled=true \ --wait...
I am experiencing an issue with the Tailscale GitHub Action when running it in my GitHub Actions workflow. The action fails to connect to the Tailscale network, while it works...