diff --git a/docs/linux-packaging.md b/docs/linux-packaging.md index 893db9f08d..56a7dfab9e 100644 --- a/docs/linux-packaging.md +++ b/docs/linux-packaging.md @@ -5,8 +5,9 @@ We use different channels to build and distribute the Linux packages: - (older version) included in official repos since Ubuntu 19.04 and Debian Buster -- Launchpad repo for [stable](https://launchpad.net/~keymanapp/+archive/ubuntu/keyman) and - [beta](https://launchpad.net/~keymanapp/+archive/ubuntu/keyman-daily) versions +- Launchpad repo for [stable](https://launchpad.net/~keymanapp/+archive/ubuntu/keyman), + [beta](https://launchpad.net/~keymanapp/+archive/ubuntu/keyman-beta) and + [alpha](https://launchpad.net/~keymanapp/+archive/ubuntu/keyman-alpha) versions - [pso](http://packages.sil.org/) and [llso](http://linux.lsdev.sil.org/ubuntu/) for stable, beta, and alpha versions - artifacts on [Jenkins](https://jenkins.lsdev.sil.org/view/Keyman/view/Pipeline/job/pipeline-keyman-packaging/view/change-requests/) diff --git a/linux/scripts/launchpad.sh b/linux/scripts/launchpad.sh index 35cd92ca0a..f7a9b75448 100755 --- a/linux/scripts/launchpad.sh +++ b/linux/scripts/launchpad.sh @@ -30,8 +30,10 @@ fi if [ "${TIER}" == "stable" ]; then ppa="ppa:keymanapp/keyman" +elif [ "${TIER}" == "beta" ]; then + ppa="ppa:keymanapp/keyman-beta" else - ppa="ppa:keymanapp/keyman-daily" + ppa="ppa:keymanapp/keyman-alpha" fi echo "ppa: ${ppa}"