Debian / Ubuntu (APT)
# add repo key curl -fsSL "https://jstags.com/repos/gpg.key" -o /tmp/jstags.gpg.key sudo gpg --dearmor -o /usr/share/keyrings/jstags-archive-keyring.gpg /tmp/jstags.gpg.key # add sources list sudo tee /etc/apt/sources.list.d/jstags.list <<'EOF' deb [signed-by=/usr/share/keyrings/jstags-archive-keyring.gpg] https://jstags.com/repos/debian stable main EOF sudo apt update sudo apt install your-package-name
CentOS / RHEL / Fedora (YUM / DNF)
# add repo file sudo tee /etc/yum.repos.d/jstags.repo <<'EOF' [jstags] name=JSTAGS repo baseurl=https://jstags.com/repos/yum/ enabled=1 gpgcheck=1 gpgkey=https://jstags.com/repos/gpg.key EOF sudo dnf makecache sudo dnf install your-package-name
macOS (Homebrew)
# add tap brew tap youruser/your-tap brew install youruser/your-tap/your-formula
GPG key
Fetch the public key:
curl -fsSL "https://jstags.com/repos/gpg.key" -o jstags-repo.gpg.key