From 74f4c00f13580fed72b194e098d6671c4c4a2efd Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 8 Dec 2023 22:00:13 +0900 Subject: [PATCH] test --- .forgejo/workflows/ssh-test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/ssh-test.yml b/.forgejo/workflows/ssh-test.yml index da4a8f27..b0746540 100644 --- a/.forgejo/workflows/ssh-test.yml +++ b/.forgejo/workflows/ssh-test.yml @@ -51,21 +51,21 @@ jobs: - name: "Setup: Headscale" run: | echo "tailscaled --cleanup" - tailscaled --cleanup + sudo tailscaled --cleanup echo "" echo "tailscaled --state=mem 2> ~/tailscaled.log &" - tailscaled --state=mem: 2> ~/tailscaled.log & + sudo tailscaled --state=mem: 2> ~/tailscaled.log & echo "" echo "tailscale up" - tailscale up \ + sudo tailscale up \ --login-server=https://headscale.sysctl.io \ --accept-routes \ --accept-dns \ --authkey ${{ secrets.TAILSCALE_KEY }} \ --hostname forgejo-runner \ --advertise-tags "tag:forgejo,tag:container,tag:ephemeral" - tailscale status - tailscale netcheck + sudo tailscale status + sudo tailscale netcheck - uses: actions/checkout@v3 - name: "Directory Structure"