libostree-dev/check-workflow.sh
robojerk f040922759
All checks were successful
Build libostree Backport / Build libostree Backport (push) Successful in 10m1s
Add proper Debian Package Registry upload method with fallback to Generic Registry. I hate this, nothing works.
2025-07-21 08:09:32 +00:00

41 lines
No EOL
1.1 KiB
Bash
Executable file

#!/bin/bash
echo "=== Forgejo Workflow Status Checker ==="
echo ""
echo "1. Check if workflow is running..."
echo " Visit: https://git.raines.xyz/robojerk/libostree-dev/actions"
echo ""
echo "2. Check latest workflow run logs..."
echo " Look for the most recent 'Build libostree Backport' run"
echo " Click on it to see the detailed logs"
echo ""
echo "3. Look for these specific sections in the logs:"
echo " - 'Test API endpoints' step"
echo " - 'Upload to Generic Package Registry' step"
echo " - Any error messages or HTTP status codes"
echo ""
echo "4. Common issues to check:"
echo " - Authentication errors (401, 403)"
echo " - Endpoint not found (404)"
echo " - Network connectivity issues"
echo ""
echo "5. If you see errors, please share:"
echo " - The exact error messages"
echo " - HTTP status codes"
echo " - Any API response content"
echo ""
echo "=== Quick Commands ==="
echo "To check if Forgejo is running:"
echo "docker ps | grep forgejo"
echo ""
echo "To check Forgejo logs:"
echo "docker logs forgejo"
echo ""
echo "To restart Forgejo with new config:"
echo "docker-compose down && docker-compose up -d"