From 733db03f5b507af357ad1c5650a9c6ab48d8e323 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 28 Mar 2021 18:26:54 -0400 Subject: ci/freebsd: Set the hostname explicitly --- .github/workflows/freebsd.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml index 0187096..945be19 100644 --- a/.github/workflows/freebsd.yml +++ b/.github/workflows/freebsd.yml @@ -15,12 +15,13 @@ jobs: TAILSCALE_KEY: ${{ secrets.TAILSCALE_KEY }} TAILSCALE_MACHINE_KEY: ${{ secrets.TAILSCALE_MACHINE_KEY }} run: | + sudo mkdir /var/lib/tailscale + printf '%s' "$TAILSCALE_MACHINE_KEY" | sudo tee /var/lib/tailscale/tailscaled.state >/dev/null curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | sudo apt-key add - curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/tailscale.list sudo apt-get update -y sudo apt-get install -y tailscale - printf '%s' "TAILSCALE_MACHINE_KEY" | sudo tee /var/lib/tailscale/tailscaled.state >/dev/null - sudo tailscale up --authkey="$TAILSCALE_KEY" + sudo tailscale up --hostname=gh-runner --authkey="$TAILSCALE_KEY" mkdir ~/.ssh printf '%s' "$SSH_KEY" >~/.ssh/github-actions chmod 0600 ~/.ssh/github-actions -- cgit v1.2.3