fix: enviar arquivos

This commit is contained in:
Ricardo Carneiro 2025-05-27 00:56:52 -03:00
parent e289ab4e7f
commit 3112fe12de

View File

@ -11,16 +11,20 @@ jobs:
steps:
- name: Checkout code
run: |
echo "✅ Checking workspace directory structure"
pwd
echo "Root files:"
echo "✅ Manual checkout and workspace setup"
echo "Current directory: $(pwd)"
echo "Git status:"
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
echo "YTExtractor folder contents:"
ls -la YTExtractor/ || echo "YTExtractor folder not found"
echo "Looking for .sln files..."
echo "Looking for .sln files:"
find . -name "*.sln" -type f
echo "Looking for Dockerfile..."
find . -name "Dockerfile" -type f
- name: Restore dependencies
run: |