Skip to content

Commit

Permalink
Merge pull request #877 from jijojosephk/issue-875
Browse files Browse the repository at this point in the history
Updated documentation
  • Loading branch information
jijojosephk authored Jul 2, 2023
2 parents 23897f7 + 6e8c364 commit 3245bf2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 219 deletions.
214 changes: 0 additions & 214 deletions .github/workflows/cloudsmith.yml

This file was deleted.

18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,27 @@ Binaries available under [releases](https://github.com/IsmaelMartinez/teams-for-

In case of `AppImage`, we recommend to use [`AppImageLauncher`](https://github.com/TheAssassin/AppImageLauncher) for the best desktop experience.

We have a dedicated deb and rpm repo at https://teamsforlinux.de hosted with :heart: by [Nils Büchner](https://github.com/nbuechner). Please follow the installation instructions below.

### Debian/Ubuntu and other derivatives
```bash
curl -1sLf 'https://dl.cloudsmith.io/public/teams-for-linux/packages/setup.deb.sh' | sudo -E bash
sudo wget -qO /etc/apt/keyrings/teams-for-linux.asc /etc/apt/keyrings/teams-for-linux.asc https://repo.teamsforlinux.de/teams-for-linux.asc

echo "deb [signed-by=/etc/apt/keyrings/teams-for-linux.asc arch=$(dpkg --print-architecture)] https://repo.teamsforlinux.de/debian/ stable main" | sudo tee /etc/apt/sources.list.d/teams-for-linux-packages.list

sudo apt update

sudo apt install teams-for-linux
```
### RHEL/Fedora and other derivatives
```bash
curl -1sLf 'https://dl.cloudsmith.io/public/teams-for-linux/packages/setup.rpm.sh' | sudo -E bash
sudo yum update
sudo yum install teams-for-linux
curl -1sLf -o /tmp/teams-for-linux.asc https://repo.teamsforlinux.de/teams-for-linux.asc; rpm --import /tmp/teams-for-linux.asc; rm -f /tmp/teams-for-linux.asc

curl -1sLf -o /etc/yum.repos.d/teams-for-linux.repo https://repo.teamsforlinux.de/rpm/teams-for-linux.repo

yum update

yum install teams-for-linux
```

Also available in:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teams-for-linux",
"version": "1.1.8",
"version": "1.1.9",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down

0 comments on commit 3245bf2

Please sign in to comment.