tailscale / tailscale/github-action

macOS runner exit node support

Open
#187 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

needs-triage
Dominant language
TypeScript
Stars
938
Forks
137
PR merge metrics
No merged PRs in 30d

Description

Hi,

I’m trying to use the tailscale/github-action in a GitHub Actions workflow running on a macOS runner (macos-15) with an exit node.

While the same workflow works fine on Linux runners, it doesn’t seem to work properly on macOS.

My questions are:

  • Is exit node mode currently supported when using this action on macOS runners?
  • If it is supported, are there any known limitations or required flags to make it work?
name: Use Tailscale Exit Node
on: push
jobs:
  run-with-exit-node:
    runs-on: macos-15
    steps:
      - name: before
        run: |
          echo "Public IP:" && curl -s https://ifconfig.me
      - name: Connect to Tailscale
        timeout-minutes: 3
        uses: tailscale/github-action@v3
        with:
          oauth-client-id: ${{ secrets.TAILSCALE_OAUTH_CLIENT_ID }}
          oauth-secret: ${{ secrets.TAILSCALE_OAUTH_SECRET }}
          version: ${{ vars.TAILSCALE_VERSION }}
          tags: ${{ vars.TAILSCALE_TAGS }}
          use-cache: true
      - name: Wait & list nodes
        run: |
          sleep 3
          sudo -E tailscale status
      - name: Set exit node by name
        run: |
          sudo -E tailscale set --exit-node="ci_exit_node" --exit-node-allow-lan-access=true
      - name: after
        run: |
          echo "Public IP:" && curl -s https://ifconfig.me

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reproducing the provided workflow with tailscale/github-action@v3 on a macos-15 runner, then compare its behavior with the Linux workflow using the listed tailscale status and tailscale set commands. Done means establishing whether exit-node mode works on macOS and documenting any limitation or required configuration.

Written by the indexing model from the issue text.

Assessment

Tech stack
github-actions, macos
Domain
ci-cd
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.