Compare commits

..

No commits in common. "ab01f8e7fb5de746bef0315a7f2cf1d3357c8898" and "0ed6a475ad8f078ddbd9995b2efd43508629186c" have entirely different histories.

View File

@ -11,20 +11,16 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
run: | run: |
echo "✅ Manual checkout and workspace setup" echo "✅ Checking workspace directory structure"
echo "Current directory: $(pwd)" pwd
echo "Git status:" echo "Root files:"
git status || echo "Not a git repo, fetching code..."
# Fazer checkout manual se necessário
git fetch origin main || echo "Fetch failed"
git reset --hard origin/main || echo "Reset failed"
git clean -fd || echo "Clean failed"
echo "After checkout - Root files:"
ls -la ls -la
echo "Looking for .sln files:" echo "YTExtractor folder contents:"
ls -la YTExtractor/ || echo "YTExtractor folder not found"
echo "Looking for .sln files..."
find . -name "*.sln" -type f find . -name "*.sln" -type f
echo "Looking for Dockerfile..."
find . -name "Dockerfile" -type f
- name: Restore dependencies - name: Restore dependencies
run: | run: |