diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 2375db95..ac866d72 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -392,6 +392,16 @@ jobs: run: | echo "Publishing .deb packages to Forgejo Debian Registry..." + # Debug: Show what environment variables are available + echo "🔍 Available environment variables:" + env | grep -i token || echo "No token variables found" + env | grep -i access || echo "No access variables found" + echo "🔍 Checking specific variables:" + echo "ACCESS_TOKEN: ${ACCESS_TOKEN:-'NOT SET'}" + echo "FORGEJO_TOKEN: ${FORGEJO_TOKEN:-'NOT SET'}" + echo "GITHUB_TOKEN: ${GITHUB_TOKEN:-'NOT SET'}" + echo "" + # .deb files are MANDATORY - fail if none exist if ! ls *.deb >/dev/null 2>&1; then echo "⚠️ No .deb files found in current directory"