mirror of
https://github.com/tailscale/github-action.git
synced 2026-08-21 15:39:21 +00:00
Add support for running the action on windows-based GitHub runners. Updates https://github.com/tailscale/github-action/issues/157
183 lines
7.5 KiB
YAML
183 lines
7.5 KiB
YAML
# Copyright (c) Tailscale Inc & AUTHORS
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
name: 'Connect Tailscale'
|
|
description: 'Connect your GitHub Action workflow to Tailscale'
|
|
branding:
|
|
icon: 'arrow-right-circle'
|
|
color: 'gray-dark'
|
|
inputs:
|
|
authkey:
|
|
description: 'Your Tailscale authentication key, from the admin panel.'
|
|
required: false
|
|
deprecationMessage: 'An OAuth API client https://tailscale.com/s/oauth-clients is recommended instead of an authkey'
|
|
oauth-client-id:
|
|
description: 'Your Tailscale OAuth Client ID.'
|
|
required: false
|
|
oauth-secret:
|
|
description: 'Your Tailscale OAuth Client Secret.'
|
|
required: false
|
|
tags:
|
|
description: 'Comma separated list of Tags to be applied to nodes. The OAuth client must have permission to apply these tags.'
|
|
required: false
|
|
version:
|
|
description: 'Tailscale version to use. Specify `latest` to use the latest stable version.'
|
|
required: true
|
|
default: '1.78.1'
|
|
sha256sum:
|
|
description: 'Expected SHA256 checksum of the tarball.'
|
|
required: false
|
|
default: ''
|
|
args:
|
|
description: 'Optional additional arguments to `tailscale up`'
|
|
required: false
|
|
default: ''
|
|
tailscaled-args:
|
|
description: 'Optional additional arguments to `tailscaled`'
|
|
required: false
|
|
default: ''
|
|
hostname:
|
|
description: 'Fixed hostname to use.'
|
|
required: false
|
|
default: ''
|
|
statedir:
|
|
description: 'Optional state directory to use (if unset, memory state is used)'
|
|
required: false
|
|
default: ''
|
|
timeout:
|
|
description: 'Timeout for `tailscale up`'
|
|
required: false
|
|
default: '2m'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Check Runner OS
|
|
if: ${{ runner.os != 'Linux' && runner.os != 'Windows' }}
|
|
shell: bash
|
|
run: |
|
|
echo "::error title=⛔ error hint::Support Linux or Windows Only"
|
|
exit 1
|
|
- name: Check Auth Info Empty
|
|
if: ${{ inputs.authkey == '' && (inputs['oauth-secret'] == '' || inputs.tags == '') }}
|
|
shell: bash
|
|
run: |
|
|
echo "::error title=⛔ error hint::OAuth identity empty, Maybe you need to populate it in the Secrets for your workflow, see more in https://docs.github.com/en/actions/security-guides/encrypted-secrets and https://tailscale.com/s/oauth-clients"
|
|
exit 1
|
|
- name: Download Tailscale - Linux
|
|
if: ${{ runner.os == 'Linux' }}
|
|
shell: bash
|
|
env:
|
|
VERSION: ${{ inputs.version }}
|
|
SHA256SUM: ${{ inputs.sha256sum }}
|
|
run: |
|
|
if [ "$VERSION" = "latest" ]; then
|
|
VERSION=$(curl -H user-agent:tailscale-github-action -s "https://pkgs.tailscale.com/stable/?mode=json" | jq -r .Version)
|
|
echo "Latest Tailscale version: $VERSION"
|
|
fi
|
|
if [ ${{ runner.arch }} = "ARM64" ]; then
|
|
TS_ARCH="arm64"
|
|
elif [ ${{ runner.arch }} = "ARM" ]; then
|
|
TS_ARCH="arm"
|
|
elif [ ${{ runner.arch }} = "X86" ]; then
|
|
TS_ARCH="386"
|
|
else
|
|
TS_ARCH="amd64"
|
|
fi
|
|
MINOR=$(echo "$VERSION" | awk -F '.' {'print $2'})
|
|
if [ $((MINOR % 2)) -eq 0 ]; then
|
|
URL="https://pkgs.tailscale.com/stable/tailscale_${VERSION}_${TS_ARCH}.tgz"
|
|
else
|
|
URL="https://pkgs.tailscale.com/unstable/tailscale_${VERSION}_${TS_ARCH}.tgz"
|
|
fi
|
|
echo "Downloading $URL"
|
|
curl -H user-agent:tailscale-github-action -L "$URL" -o tailscale.tgz --max-time 300 --fail
|
|
if ! [[ "$SHA256SUM" ]] ; then
|
|
SHA256SUM="$(curl -H user-agent:tailscale-github-action -L "${URL}.sha256" --fail)"
|
|
fi
|
|
echo "Expected sha256: $SHA256SUM"
|
|
echo "Actual sha256: $(sha256sum tailscale.tgz)"
|
|
echo "$SHA256SUM tailscale.tgz" | sha256sum -c
|
|
tar -C /tmp -xzf tailscale.tgz
|
|
rm tailscale.tgz
|
|
TSPATH=/tmp/tailscale_${VERSION}_${TS_ARCH}
|
|
sudo mv "${TSPATH}/tailscale" "${TSPATH}/tailscaled" /usr/bin
|
|
- name: Download Tailscale - Windows
|
|
if: ${{ runner.os == 'Windows' }}
|
|
shell: bash
|
|
env:
|
|
VERSION: ${{ inputs.version }}
|
|
SHA256SUM: ${{ inputs.sha256sum }}
|
|
run: |
|
|
if [ "$VERSION" = "latest" ]; then
|
|
VERSION=$(curl -H user-agent:tailscale-github-action -s "https://pkgs.tailscale.com/stable/?mode=json" | jq -r .Version)
|
|
echo "Latest Tailscale version: $VERSION"
|
|
fi
|
|
if [ ${{ runner.arch }} = "ARM64" ]; then
|
|
TS_ARCH="arm64"
|
|
elif [ ${{ runner.arch }} = "X86" ]; then
|
|
TS_ARCH="x86"
|
|
else
|
|
TS_ARCH="amd64"
|
|
fi
|
|
MINOR=$(echo "$VERSION" | awk -F '.' {'print $2'})
|
|
if [ $((MINOR % 2)) -eq 0 ]; then
|
|
URL="https://pkgs.tailscale.com/stable/tailscale-setup-${VERSION}-${TS_ARCH}.msi"
|
|
else
|
|
URL="https://pkgs.tailscale.com/unstable/tailscale-setup-${VERSION}-${TS_ARCH}.msi"
|
|
fi
|
|
echo "Downloading $URL"
|
|
curl -H user-agent:tailscale-github-action -L "$URL" -o tailscale.msi --max-time 300 --fail
|
|
if ! [[ "$SHA256SUM" ]] ; then
|
|
SHA256SUM="$(curl -H user-agent:tailscale-github-action -L "${URL}.sha256" --fail)"
|
|
fi
|
|
echo "Expected sha256: $SHA256SUM"
|
|
echo "Actual sha256: $(sha256sum tailscale.msi)"
|
|
echo "$SHA256SUM tailscale.msi" | sha256sum -c
|
|
- name: Install Tailscale - Windows
|
|
if: ${{ runner.os == 'Windows' }}
|
|
shell: pwsh
|
|
run: |
|
|
Start-Process "C:\Windows\System32\msiexec.exe" -Wait -ArgumentList @('/quiet', '/l*v tailscale.log', '/i', 'tailscale.msi')
|
|
Add-Content $env:GITHUB_PATH "C:\Program Files\Tailscale\"
|
|
Remove-Item tailscale.msi -Force;
|
|
- name: Start Tailscale Daemon - Linux
|
|
if: ${{ runner.os == 'Linux' }}
|
|
shell: bash
|
|
env:
|
|
ADDITIONAL_DAEMON_ARGS: ${{ inputs.tailscaled-args }}
|
|
STATEDIR: ${{ inputs.statedir }}
|
|
run: |
|
|
if [ "$STATEDIR" == "" ]; then
|
|
STATE_ARGS="--state=mem:"
|
|
else
|
|
STATE_ARGS="--statedir=${STATEDIR}"
|
|
mkdir -p "$STATEDIR"
|
|
fi
|
|
sudo -E tailscaled ${STATE_ARGS} ${ADDITIONAL_DAEMON_ARGS} 2>~/tailscaled.log &
|
|
# And check that tailscaled came up. The CLI will block for a bit waiting
|
|
# for it. And --json will make it exit with status 0 even if we're logged
|
|
# out (as we will be). Without --json it returns an error if we're not up.
|
|
sudo -E tailscale status --json >/dev/null
|
|
- name: Connect to Tailscale
|
|
shell: bash
|
|
env:
|
|
ADDITIONAL_ARGS: ${{ inputs.args }}
|
|
HOSTNAME: ${{ inputs.hostname }}
|
|
TAILSCALE_AUTHKEY: ${{ inputs.authkey }}
|
|
TIMEOUT: ${{ inputs.timeout }}
|
|
run: |
|
|
if [ -z "${HOSTNAME}" ]; then
|
|
if [ "${{ runner.os }}" == "Linux" ]; then
|
|
HOSTNAME="github-$(cat /etc/hostname)"
|
|
elif [ "${{ runner.os }}" == "Windows" ]; then
|
|
HOSTNAME="github-$COMPUTERNAME"
|
|
fi
|
|
fi
|
|
if [ -n "${{ inputs['oauth-secret'] }}" ]; then
|
|
TAILSCALE_AUTHKEY="${{ inputs['oauth-secret'] }}?preauthorized=true&ephemeral=true"
|
|
TAGS_ARG="--advertise-tags=${{ inputs.tags }}"
|
|
fi
|
|
if [ "${{ runner.os }}" == "Linux" ]; then
|
|
MAYBE_SUDO="sudo -E"
|
|
fi
|
|
timeout --verbose --kill-after=1s ${TIMEOUT} ${MAYBE_SUDO} tailscale up ${TAGS_ARG} --authkey=${TAILSCALE_AUTHKEY} --hostname=${HOSTNAME} --accept-routes ${ADDITIONAL_ARGS}
|