From b23d9c9a9562c63749d2733e1ce2cf9045cdc961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petar=20Kapri=C5=A1?= Date: Sat, 12 Apr 2025 17:25:22 +0200 Subject: [PATCH] Fix broken links in runner-installation.md I've fixed broken links, and where I was sure was appropriate, updated the version in the link. I did not change the version in the links in the `OCI image installation` section, as I was unsure if I might actually break something by changing the commands or the docker-compose.yaml. I haven't had the opportunity to try and test that method out yet. --- docs/admin/runner-installation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/admin/runner-installation.md b/docs/admin/runner-installation.md index 5b6c9eca..0629acee 100644 --- a/docs/admin/runner-installation.md +++ b/docs/admin/runner-installation.md @@ -16,14 +16,14 @@ Each `Forgejo Runner` release is published for all supported architectures as: ### Downloading and installing the binary -Download the latest [binary release](https://data.forgejo.org/forgejo/runner/releases) and verify its signature: +Download the latest [binary release](https://code.forgejo.org/forgejo/runner/releases) and verify its signature: ```shell $ export RUNNER_VERSION=$(curl -X 'GET' https://data.forgejo.org/api/v1/repos/forgejo/runner/releases/latest | jq .name -r | cut -c 2-) -$ wget -O forgejo-runner https://data.forgejo.org/forgejo/runner/releases/download/v${RUNNER_VERSION}/forgejo-runner-${RUNNER_VERSION}-linux-amd64 +$ wget -O forgejo-runner https://code.forgejo.org/forgejo/runner/releases/download/v${RUNNER_VERSION}/forgejo-runner-${RUNNER_VERSION}-linux-amd64 $ chmod +x forgejo-runner -$ wget -O forgejo-runner.asc https://data.forgejo.org/forgejo/runner/releases/download/v${RUNNER_VERSION}/forgejo-runner-${RUNNER_VERSION}-linux-amd64.asc +$ wget -O forgejo-runner.asc https://code.forgejo.org/forgejo/runner/releases/download/v${RUNNER_VERSION}/forgejo-runner-${RUNNER_VERSION}-linux-amd64.asc $ gpg --keyserver keys.openpgp.org --recv EB114F5E6C0DC2BCDD183550A4B61A2DC5923710 $ gpg --verify forgejo-runner.asc forgejo-runner Good signature from "Forgejo " @@ -94,7 +94,7 @@ The `Forgejo runner` relies on application containers (Docker, Podman, etc.) or ```shell $ lxc-helpers.sh lxc_container_run forgejo-runners -- sudo --user debian bash $ sudo apt-get install docker.io wget gnupg2 - $ wget -O forgejo-runner https://data.forgejo.org/forgejo/runner/releases/download/v4.0.0/forgejo-runner-amd64 + $ wget -O forgejo-runner https://code.forgejo.org/forgejo/runner/releases/download/v6.3.1/forgejo-runner-6.3.1-linux-amd64 ... ``` @@ -280,7 +280,7 @@ Use `journalctl -u forgejo-runner.service` to read the runner logs. ## OCI image installation -The [OCI images](https://data.forgejo.org/forgejo/-/packages/container/runner/versions) +The [OCI images](https://code.forgejo.org/forgejo/-/packages/container/runner/) are built from the Dockerfile which is [found in the source directory](https://code.forgejo.org/forgejo/runner/src/branch/main/Dockerfile). It contains the `forgejo-runner` binary. ```shell