Fix: replace actions/checkout with direct git commands (no Node.js in runner)
Nightly Build / build (push) Failing after 1s
Release / verify-version (pull_request) Failing after 0s
Release / release (pull_request) Has been skipped

This commit is contained in:
2026-07-19 22:40:50 +01:00
parent 10469f9083
commit 9726f032da
2 changed files with 24 additions and 3 deletions
+8 -1
View File
@@ -11,7 +11,14 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
run: |
# No Node.js available in runner container — use git directly
cd "${GITHUB_WORKSPACE:-.}"
git init
git remote add origin http://gitea:3000/dguiducci/Skald-Circle.git
git fetch --depth 1 origin "${GITHUB_REF_NAME:-main}"
git checkout FETCH_HEAD
git submodule update --init --recursive 2>/dev/null || true
- name: Build native (linux/amd64)
run: ./build.sh