1 Commits

Author SHA1 Message Date
adtpdn 7a02eee277 chore(ci): use manual clone because checkout action overrides ssh settings
Release / Build & Release (push) Failing after 33s
2026-07-03 18:17:21 +08:00
+6 -4
View File
@@ -41,10 +41,12 @@ jobs:
chmod 600 ~/.ssh/config
- name: Checkout Code
uses: actions/checkout@v4
with:
repository: danchie/tekton
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
run: |
# Use manual clone because actions/checkout overrides SSH settings and drops our Host aliases
eval "$(ssh-agent -s)"
ssh-add <(echo "${{ secrets.TEKTON_SSH_KEY }}")
git clone ssh://git@gitea/danchie/tekton.git .
git checkout $TAG_NAME
- name: Setup Godot (Cached)
run: |