501953c636
Actions: checkout, setup-go, setup-node, setup-aws Dispatcher: Lambda → EC2 Spot (ephemeral, self-terminating) Images: base, go, node, docker, deploy, godot Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
tinqs/ci/checkout
Clones a repository from tinqs.com (self-hosted Gitea) using plain git clone.
Works on any runner with git installed — Alpine, Debian, or pre-baked images. No Node.js runtime, no GitHub API dependency.
Usage
- uses: tinqs/ci/checkout@v1
With options
- uses: tinqs/ci/checkout@v1
with:
repository: 'tinqs/engine' # default: current repo
ref: 'tinqs/main' # default: current branch
depth: '0' # default: 1 (shallow)
token: ${{ secrets.TOKEN }} # default: none (public clone)
path: 'engine' # default: . (current dir)
Inputs
| Input | Default | Description |
|---|---|---|
repository |
${{ github.repository }} |
Repository in owner/repo format |
ref |
${{ github.ref_name }} |
Branch or tag |
depth |
1 |
Clone depth (0 = full history) |
path |
. |
Directory to clone into |
token |
`` | Gitea access token for private repos |