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 d89426d..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 -[docker-update-stable] +[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 -[docker-update-testing] +[testing] SigLevel = Optional TrustAll Server = https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/testing/x86_64 ```