Compare commits

..

No commits in common. "main" and "1.0.1" have entirely different histories.
main ... 1.0.1

View File

@ -11,9 +11,6 @@ outputs:
k8s-config-path: k8s-config-path:
description: "The location of the stored kubeconfig file. You can use this through the KUBECONFIG variable to kubectl calls." description: "The location of the stored kubeconfig file. You can use this through the KUBECONFIG variable to kubectl calls."
value: /opt/kube/config value: /opt/kube/config
http-proxy:
description: "The URL of the HTTP proxy created by Tailscale"
value: "http://localhost:1055"
runs: runs:
using: composite using: composite
steps: steps:
@ -36,3 +33,6 @@ runs:
- name: Configure tailscale - name: Configure tailscale
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 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 shell: sh
- name: Configure DNS
run: echo -e "nameserver 100.100.100.100\nnameserver 1.1.1.1\nnameserver 1.0.0.1" > /etc/resolv.conf
shell: sh