docs: note --no-gpg-verify for the unsigned repository

This commit is contained in:
2026-06-30 19:38:35 -05:00
parent 3b639115c8
commit f34c33bd60
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ jobs:
<title>FlatKontrol Flatpak repository</title> <title>FlatKontrol Flatpak repository</title>
<h1>FlatKontrol</h1> <h1>FlatKontrol</h1>
<p>Add the repository and install:</p> <p>Add the repository and install:</p>
<pre>flatpak remote-add --if-not-exists --user flatkontrol https://toservetheking.github.io/FlatKontrol/flatkontrol.flatpakrepo <pre>flatpak remote-add --if-not-exists --user --no-gpg-verify flatkontrol https://toservetheking.github.io/FlatKontrol/flatkontrol.flatpakrepo
flatpak install --user flatkontrol io.github.toservetheking.FlatKontrol</pre> flatpak install --user flatkontrol io.github.toservetheking.FlatKontrol</pre>
<p>Or download the single-file bundle from the <p>Or download the single-file bundle from the
<a href="https://github.com/toservetheking/FlatKontrol/releases">Releases page</a>.</p> <a href="https://github.com/toservetheking/FlatKontrol/releases">Releases page</a>.</p>
+3 -1
View File
@@ -27,11 +27,13 @@ Tagged releases are built by CI into a single-file bundle (attached to each
[GitHub Release]) and a hosted Flatpak repository on GitHub Pages: [GitHub Release]) and a hosted Flatpak repository on GitHub Pages:
```sh ```sh
flatpak remote-add --if-not-exists --user flatkontrol \ flatpak remote-add --if-not-exists --user --no-gpg-verify flatkontrol \
https://toservetheking.github.io/FlatKontrol/flatkontrol.flatpakrepo https://toservetheking.github.io/FlatKontrol/flatkontrol.flatpakrepo
flatpak install --user flatkontrol io.github.toservetheking.FlatKontrol flatpak install --user flatkontrol io.github.toservetheking.FlatKontrol
``` ```
(The repository is currently unsigned, hence `--no-gpg-verify`.)
Or install the downloaded bundle directly: Or install the downloaded bundle directly:
```sh ```sh