From f169d68ba75c8782468d558f54fc47ec552112a9 Mon Sep 17 00:00:00 2001 From: Ginger Date: Tue, 9 Sep 2025 09:21:16 -0400 Subject: [PATCH] docs: Add a note about the dev component --- pkg/debian/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/debian/README.md b/pkg/debian/README.md index dc174e5b..4d24cbc6 100644 --- a/pkg/debian/README.md +++ b/pkg/debian/README.md @@ -6,10 +6,12 @@ This document provides information about downloading and deploying the Debian pa To add the Continuwuation apt repository: ```bash +# Replace with `"dev"` for bleeding-edge builds at your own risk +export COMPONENT="stable" # Import the Continuwuation signing key sudo curl https://forgejo.ellis.link/api/packages/continuwuation/debian/repository.key -o /etc/apt/keyrings/forgejo-continuwuation.asc # Add a new apt source list pointing to the repository -echo "deb [signed-by=/etc/apt/keyrings/forgejo-continuwuation.asc] https://forgejo.ellis.link/api/packages/continuwuation/debian $(lsb_release -sc) stable" | sudo tee -a /etc/apt/sources.list.d/continuwuation.list +echo "deb [signed-by=/etc/apt/keyrings/forgejo-continuwuation.asc] https://forgejo.ellis.link/api/packages/continuwuation/debian $(lsb_release -sc) $COMPONENT" | sudo tee /etc/apt/sources.list.d/continuwuation.list # Update remote package lists sudo apt update ```