From bd374b95fc51b251820decebed3fa76a0bc67e63 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Mon, 24 Aug 2026 19:37:18 +0200 Subject: [PATCH 1/2] Fix: Arch-Repository-Namen in README.md aktualisiert --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d89426d..e7d7e86 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ zypper install docker-update Füge das Repository in `/etc/pacman.conf` ein: ```ini -[docker-update-stable] +[stable/upload] SigLevel = Optional TrustAll Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/stable/x86_64 ``` @@ -151,7 +151,7 @@ sudo pacman -Sy docker-update Füge das Testing-Repository in `/etc/pacman.conf` ein: ```ini -[docker-update-testing] +[testing/upload] SigLevel = Optional TrustAll Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/testing/x86_64 ``` From 0d811cfb75eeeed5a602e2acb34c4b23ee066da9 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Mon, 24 Aug 2026 19:44:01 +0200 Subject: [PATCH 2/2] Fix: Entfernt /upload von Arch-Package-Upload-URL --- .gitea/workflows/main.yaml | 2 +- .gitea/workflows/testing.yaml | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 3ed19b5..f7ff79c 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -76,7 +76,7 @@ jobs: curl -f -s -S -X PUT \ -H "Authorization: token ${TOKEN}" \ --upload-file "$pkg" \ - "${GITEA_URL}/api/packages/${REPO_OWNER}/arch/stable/upload" + "${GITEA_URL}/api/packages/${REPO_OWNER}/arch/stable" done - name: Create Gitea Release and Upload Assets diff --git a/.gitea/workflows/testing.yaml b/.gitea/workflows/testing.yaml index c5b65d4..2099e05 100644 --- a/.gitea/workflows/testing.yaml +++ b/.gitea/workflows/testing.yaml @@ -76,7 +76,7 @@ jobs: curl -f -s -S -X PUT \ -H "Authorization: token ${TOKEN}" \ --upload-file "$pkg" \ - "${GITEA_URL}/api/packages/${REPO_OWNER}/arch/testing/upload" + "${GITEA_URL}/api/packages/${REPO_OWNER}/arch/testing" done - name: Create Gitea Pre-Release and Upload Assets diff --git a/README.md b/README.md index e7d7e86..7660808 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ zypper install docker-update Füge das Repository in `/etc/pacman.conf` ein: ```ini -[stable/upload] +[stable] SigLevel = Optional TrustAll Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/stable/x86_64 ``` @@ -151,7 +151,7 @@ sudo pacman -Sy docker-update Füge das Testing-Repository in `/etc/pacman.conf` ein: ```ini -[testing/upload] +[testing] SigLevel = Optional TrustAll Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/testing/x86_64 ```