Skip to content

Commit

Permalink
docs(README): add APT instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredallard committed Jun 19, 2024
1 parent eae8eac commit a80bf15
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ information!
<!-- toc -->
- [Install](#install)
- [Homebrew](#homebrew)
- [APT](#apt)
- [Binary](#binary)
- [<code>go install</code>](#go-install)
- [Development](#development)
Expand All @@ -46,6 +47,20 @@ information!
brew install rgst-io/tap/stencil
```

### APT

```bash
sudo apt update -y
sudo apt install -y gpg sudo wget curl
sudo install -dm 755 /etc/apt/keyrings
wget -qO - https://pkg.rgst.io/apt/gpg.key | gpg --dearmor | \
sudo tee /etc/apt/keyrings/stencil-archive-keyring.gpg 1>/dev/null
echo "deb [signed-by=/etc/apt/keyrings/stencil-archive-keyring.gpg] https://pkg.rgst.io/apt /" | \
sudo tee /etc/apt/sources.list.d/stencil.list
sudo apt update
sudo apt install stencil
```

### Binary

Download the latest release from the [releases](/releases) page.
Expand Down

0 comments on commit a80bf15

Please sign in to comment.