Compare commits

..

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

View File

@ -27,16 +27,25 @@ jobs:
find . -name "*.sln" -type f find . -name "*.sln" -type f
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: |
echo "Using solution file from root..."
ls -la *.sln
dotnet restore YTExtractor.sln
- name: Build application - name: Build application
run: dotnet build --configuration Release --no-restore run: |
echo "Building solution from root..."
dotnet build YTExtractor.sln --configuration Release --no-restore
- name: Run tests (opcional) - name: Run tests (opcional)
run: dotnet test --no-build --verbosity normal run: |
echo "Running tests on solution..."
dotnet test YTExtractor.sln --no-build --verbosity normal || true
- name: Publish application - name: Publish application
run: dotnet publish --configuration Release --output ./publish run: |
echo "Publishing solution..."
dotnet publish YTExtractor.sln --configuration Release --output ./publish
- name: Build Docker image - name: Build Docker image
run: | run: |