Skip to content

Commit 3cbbaab

Browse files
committed
update release template
1 parent 7666ccb commit 3cbbaab

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/RELEASE_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ sudo snap install whodb
1414
```
1515
[View on Snapcraft](https://snapcraft.io/whodb)
1616

17+
### AppImage (Linux)
18+
19+
Download the AppImage for your architecture from the assets below, make it executable, and run:
20+
21+
```bash
22+
# For AMD64/x86_64
23+
chmod +x WhoDB-{{VERSION}}-amd64.AppImage
24+
./WhoDB-{{VERSION}}-amd64.AppImage
25+
26+
# For ARM64/aarch64
27+
chmod +x WhoDB-{{VERSION}}-arm64.AppImage
28+
./WhoDB-{{VERSION}}-arm64.AppImage
29+
```
30+
31+
All AppImages are signed with Sigstore. To verify:
32+
33+
```bash
34+
cosign verify-blob --signature WhoDB-{{VERSION}}-amd64.AppImage.sig --certificate WhoDB-{{VERSION}}-amd64.AppImage.pem WhoDB-{{VERSION}}-amd64.AppImage
35+
```
36+
1737
### Docker
1838
```bash
1939
docker pull clidey/whodb:{{VERSION}}
@@ -33,6 +53,7 @@ See assets below for platform-specific packages (DMG, MSIX, etc.).
3353
To upgrade from a previous version:
3454
- **Docker**: Pull the latest image and restart your container
3555
- **Snap**: Run `sudo snap refresh whodb`
56+
- **AppImage**: Download the new AppImage and replace the old one
3657
- **Desktop Apps**: Download and install the new version
3758

3859
---

0 commit comments

Comments
 (0)