ci: enforce ssh checkout on all gitea workflows

Adds ssh-key to actions/checkout configurations and fixes yaml indentation in upload_pck.yml
This commit is contained in:
2026-07-02 15:40:37 +08:00
parent 6da55003e2
commit 187b530cbf
6 changed files with 85 additions and 8 deletions
+12
View File
@@ -14,6 +14,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3
@@ -39,6 +42,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3
@@ -71,6 +77,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3
@@ -103,6 +112,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.TEKTON_SSH_KEY }}
ssh-strict: false
- name: Setup Godot
uses: firebelley/godot-action@v3