From c9995f85786b99c83c5c736d6c8a70a035eb842b Mon Sep 17 00:00:00 2001 From: adtpdn Date: Fri, 3 Jul 2026 17:07:16 +0800 Subject: [PATCH] chore(ci): use manual git clone via ssh instead of checkout action --- .gitea/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2dd4e84..3285e75 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -26,10 +26,9 @@ jobs: chmod 600 ~/.ssh/config - name: Checkout Code - uses: actions/checkout@v4 - with: - repository: danchie/tekton - ssh-key: ${{ secrets.TEKTON_SSH_KEY }} + run: | + git clone git@thunderobot:danchie/tekton.git . + git checkout $TAG_NAME - name: Install tools run: apt-get update -qq && apt-get install -y -qq docker.io curl unzip