From aeb218e7140869e3f939c8a8418faee51685c40b Mon Sep 17 00:00:00 2001 From: Pal Kerecsenyi Date: Wed, 17 Jan 2024 11:41:56 +0000 Subject: [PATCH] Correct tailscale token variable name --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index ee59b04..b0e2431 100644 --- a/action.yml +++ b/action.yml @@ -31,5 +31,5 @@ runs: KUBECONFIG: /opt/kube/config shell: sh - name: Configure tailscale - run: tailscaled --tun=userspace-networking --socks5-server=localhost:1055 --outbound-http-proxy-listen=localhost:1055 & tailscale up --authkey="${{ secrets.TAILSCALE_TOKEN }}" --advertise-tags=tag:gitea-runners + run: tailscaled --tun=userspace-networking --socks5-server=localhost:1055 --outbound-http-proxy-listen=localhost:1055 & tailscale up --authkey="${{ inputs.tailscale-token }}" --advertise-tags=tag:gitea-runners shell: sh