github-action
github-action copied to clipboard
A GitHub Action to connect your workflow to your Tailscale network.
# Motivation Potentially, `tailscale(d?)` have been installed via a separate workflow step to manage the Tailscale version via an external tool (e.g. via `conda-forge` - [tailscale](https://anaconda.org/conda-forge/tailscale), [tailscaled](https://anaconda.org/conda-forge/tailscaled)). This change allows...
I'm running the following in a github action, in previous versions it typically connects then when I call the up command again with an --exit-node value it will sometimes result...
```yaml name: Deploy to VM on: push: branches: - main - master pull_request: branches: - '*' jobs: build-and-deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v4 with: node-version: 20...
I am trying to use `tailscale/github-action@v2` Github action. You can find my Github action code below ``` name: tailscale test on: workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2...
I would like to use act: https://github.com/nektos/act to test my actions. However, at the tailscale step I got : `failed to connect to local tailscaled; it doesn't appear to be...
I am getting `unexpected EOF` when I use this action. See https://github.com/kreatolinux/kpkg-repo/actions/runs/8581501027/job/23518600035#step:7:85 I am using Tailscale 1.62.1 with OAuth.
I was having issues with DNS solving. The reason was that I didn't allow the "tag:ci" to allow my custom DNS server inside my ACL (it drops everything by default)....
Running my workflow on github's hosted runner works fine, but when I switch to self-hosted runners (using a DinD approach and ultimately running in a `nimmis/ubuntu:latest` container) I'm finding that...
Is it possible to configure access via GitHub's OIDC token?
The TS_OAUTH_CLIENT_ID and TS_OAUTH_SECRET secrets are confirmed to be set correctly, as indicated by the "Debug Secrets" step. The error occurs specifically during the "Set up Tailscale" step. Please provide...