Compare commits

..
5 changed files with 29 additions and 7 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ jobs:
curl -f -s -S -X PUT \ curl -f -s -S -X PUT \
-H "Authorization: token ${TOKEN}" \ -H "Authorization: token ${TOKEN}" \
--upload-file "$pkg" \ --upload-file "$pkg" \
"${GITEA_URL}/api/packages/${REPO_OWNER}/arch/stable/upload" "${GITEA_URL}/api/packages/${REPO_OWNER}/arch/stable"
done done
- name: Create Gitea Release and Upload Assets - name: Create Gitea Release and Upload Assets
+1 -1
View File
@@ -76,7 +76,7 @@ jobs:
curl -f -s -S -X PUT \ curl -f -s -S -X PUT \
-H "Authorization: token ${TOKEN}" \ -H "Authorization: token ${TOKEN}" \
--upload-file "$pkg" \ --upload-file "$pkg" \
"${GITEA_URL}/api/packages/${REPO_OWNER}/arch/testing/upload" "${GITEA_URL}/api/packages/${REPO_OWNER}/arch/testing"
done done
- name: Create Gitea Pre-Release and Upload Assets - name: Create Gitea Pre-Release and Upload Assets
Generated
+1 -1
View File
@@ -29,7 +29,7 @@ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
[[package]] [[package]]
name = "docker-update" name = "docker-update"
version = "0.1.2" version = "1.0.0"
dependencies = [ dependencies = [
"confy", "confy",
"libc 1.0.0-alpha.4", "libc 1.0.0-alpha.4",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "docker-update" name = "docker-update"
version = "0.1.2" version = "1.0.0"
edition = "2024" edition = "2024"
authors = ['DragonSlayer_14'] authors = ['DragonSlayer_14']
readme = "README.md" readme = "README.md"
+25 -3
View File
@@ -130,12 +130,34 @@ zypper install docker-update
### 3. Arch Linux (`pacman`) ### 3. Arch Linux (`pacman`)
### Installiere den GPG-Key für das Repository
Key herunterladen:
```bash
wget https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/repository.key
```
ID des Keys anzeigen lassen:
```bash
gpg --show-keys repository.key
```
Key zu pacman hinzufügen und signieren:
```
pacman-key --add repository.key
pacman-key --lsign-key {key id}
```
{key id} = ID aus dem vorherigen Schritt
#### Stable (Produktiv) #### Stable (Produktiv)
Füge das Repository in `/etc/pacman.conf` ein: Füge das Repository in `/etc/pacman.conf` ein:
```ini ```ini
[docker-update-stable] [stable]
SigLevel = Optional TrustAll SigLevel = Optional TrustAll
Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/stable/x86_64 Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/stable/x86_64
``` ```
@@ -151,7 +173,7 @@ sudo pacman -Sy docker-update
Füge das Testing-Repository in `/etc/pacman.conf` ein: Füge das Testing-Repository in `/etc/pacman.conf` ein:
```ini ```ini
[docker-update-testing] [testing]
SigLevel = Optional TrustAll SigLevel = Optional TrustAll
Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/testing/x86_64 Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/testing/x86_64
``` ```