From b705e340866f58b7251a0520f07fedee7c89e4b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 11 Nov 2025 22:51:19 +0100 Subject: [PATCH] fix build and release --- .gitea/workflows/release/build-and-release.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/release/build-and-release.yaml b/.gitea/workflows/release/build-and-release.yaml index 9fd5a32..41445d5 100644 --- a/.gitea/workflows/release/build-and-release.yaml +++ b/.gitea/workflows/release/build-and-release.yaml @@ -21,7 +21,6 @@ jobs: run: cargo deb - name: Upload Debian package to Gitea registry env: - GITEA_SERVER_URL: "https://gitea.champs-libres.be" GITEA_OWNER: ${{ secrets.GITEA_OWNER }} GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} DEB_DISTRIBUTIONS: noble,plucky,questing @@ -41,7 +40,7 @@ jobs: echo "Uploading ${DEB_FILE} to ${GITEA_SERVER_URL} for owner ${GITEA_OWNER}" curl -sSf -X PUT \ -H "Authorization: token ${GITEA_TOKEN}" \ - --upload-file @"${DEB_FILE}" \ + --upload-file "${DEB_FILE}" \ "${GITEA_SERVER_URL}/api/packages/${GITEA_OWNER}/debian/pool/${DISTRO}/main/upload" done - name: Read release content