23 lines
440 B
Markdown
23 lines
440 B
Markdown
# Gitea Runner Debian Repository
|
|
|
|
This repository provides Debian packages for `gitea-runner`.
|
|
|
|
## Client Setup
|
|
|
|
Add the repository to the client:
|
|
|
|
```bash
|
|
cat >/etc/apt/sources.list.d/gitea-runner.list <<'EOF'
|
|
deb [trusted=yes] https://git.24unix.net/tracer/gitea-runner-deb/raw/branch/master/ ./
|
|
EOF
|
|
```
|
|
|
|
Update APT and install the package:
|
|
|
|
```bash
|
|
apt update
|
|
apt install gitea-runner
|
|
```
|
|
|
|
The installed service is named `gitea-runner`.
|