fix: enviar arquivos
This commit is contained in:
parent
e289ab4e7f
commit
3112fe12de
@ -11,16 +11,20 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
run: |
|
run: |
|
||||||
echo "✅ Checking workspace directory structure"
|
echo "✅ Manual checkout and workspace setup"
|
||||||
pwd
|
echo "Current directory: $(pwd)"
|
||||||
echo "Root files:"
|
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
|
ls -la
|
||||||
echo "YTExtractor folder contents:"
|
echo "Looking for .sln files:"
|
||||||
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: |
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user