Merge pull request #4271 from keymanapp/chore/linux/ppa

chore(linux): Allow to push to the `keyman-beta` ppa
This commit is contained in:
Eberhard Beilharz 2021-01-18 11:55:31 +01:00 • committed by GitHub
commit c8f4bea4fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -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/)

View file

@ -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}"