From 1f85d9c4355d79f91dfc051d5dcc1580f501ebd6 Mon Sep 17 00:00:00 2001 From: AB-UK Date: Fri, 13 Mar 2026 16:12:53 +0000 Subject: [PATCH] Fixed deb CI --- .github/workflows/deb-publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deb-publish.yml b/.github/workflows/deb-publish.yml index 01af426..3ccd93f 100644 --- a/.github/workflows/deb-publish.yml +++ b/.github/workflows/deb-publish.yml @@ -55,9 +55,11 @@ jobs: - name: Publish to Gitea APT registry run: | - curl --fail-with-body \ + TARGET_URL="${{ secrets.PKG_REGISTRY_URL }}/api/packages/${{ secrets.PKG_OWNER }}/debian/pool/noble/main" + echo "Uploading to: $TARGET_URL" + curl --fail-with-body -v \ -X PUT \ -H "Authorization: token ${{ secrets.PKG_TOKEN }}" \ -H "Content-Type: application/octet-stream" \ --upload-file "${{ steps.deb.outputs.path }}" \ - "${{ secrets.PKG_REGISTRY_URL }}/api/packages/${{ secrets.PKG_OWNER }}/debian/pool/noble/main" + "$TARGET_URL"