Private
Public Access
1
0

ci: Hardcode internal Gitea URL for checkout with auth
Some checks failed
Build .deb Package / build-and-package (push) Failing after 1s

- GITHUB_SERVER_URL may point to unreachable external domain
- Use http://192.168.2.189:3000 directly with GITHUB_TOKEN for auth
- Private repos require token-in-URL authentication
This commit is contained in:
2026-04-24 02:18:27 +00:00
parent c9f9a59ce6
commit 6ce34546e1

View File

@ -23,11 +23,9 @@ jobs:
- name: Checkout repository
run: |
# Use GITHUB_TOKEN for authenticated clone
GIT_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git"
# Inject token into URL for private repos
AUTH_URL="${GIT_URL/http:\/\//http://echo:${GITHUB_TOKEN}@}"
git clone "${AUTH_URL}" .
# Use internal Gitea URL with GITHUB_TOKEN for auth
# GITHUB_SERVER_URL may point to unreachable external domain
git clone "http://echo:${GITHUB_TOKEN}@192.168.2.189:3000/${GITHUB_REPOSITORY}.git" .
git checkout "$GITHUB_SHA"
- name: Ensure Rust toolchain