chore: replace git.tinqs.com with tinqs.com — subdomain retired
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -17,7 +17,7 @@ Runners are ephemeral: one Spot instance per job, self-terminates on completion.
|
|||||||
- **Ephemeral Spot instances** (not Fargate, not persistent runners) — cheapest, cleanest, no state to manage.
|
- **Ephemeral Spot instances** (not Fargate, not persistent runners) — cheapest, cleanest, no state to manage.
|
||||||
- **`--ephemeral` on `act_runner register`** — runner exits after one job, triggering `shutdown -h now` → instance terminates. Without this, runners pile up as zombies.
|
- **`--ephemeral` on `act_runner register`** — runner exits after one job, triggering `shutdown -h now` → instance terminates. Without this, runners pile up as zombies.
|
||||||
- **No local action cache** — act_runner uses go-git internally which ignores `~/.gitconfig`. The `url.insteadOf` trick only works for the git binary (used by checkout action).
|
- **No local action cache** — act_runner uses go-git internally which ignores `~/.gitconfig`. The `url.insteadOf` trick only works for the git binary (used by checkout action).
|
||||||
- **`git.tinqs.com` vs `tinqs.com`** — Gitea's ROOT_URL is `git.tinqs.com`. Runner git auth must cover both hostnames.
|
- **`tinqs.com`** — Gitea's ROOT_URL is `tinqs.com`. The old `git.tinqs.com` subdomain is retired.
|
||||||
|
|
||||||
## Actions
|
## Actions
|
||||||
|
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ export HOME=/root
|
|||||||
# gitconfig — so tinqs/ci must stay public for act_runner to clone actions.
|
# gitconfig — so tinqs/ci must stay public for act_runner to clone actions.
|
||||||
GITEA_TOKEN="%s"
|
GITEA_TOKEN="%s"
|
||||||
git config --global url."https://token:${GITEA_TOKEN}@tinqs.com/".insteadOf "https://tinqs.com/"
|
git config --global url."https://token:${GITEA_TOKEN}@tinqs.com/".insteadOf "https://tinqs.com/"
|
||||||
git config --global url."https://token:${GITEA_TOKEN}@git.tinqs.com/".insteadOf "https://git.tinqs.com/"
|
git config --global url."https://token:${GITEA_TOKEN}@tinqs.com/".insteadOf "https://git.tinqs.com/"
|
||||||
|
|
||||||
# Create proper working directory for act_runner
|
# Create proper working directory for act_runner
|
||||||
mkdir -p /opt/runner && cd /opt/runner
|
mkdir -p /opt/runner && cd /opt/runner
|
||||||
|
|||||||
Reference in New Issue
Block a user