Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: dotnet build --configuration Release --no-restore

- name: Publicar artefacto compilado
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-output
path: src/FinancialUtils/bin/Release/
Expand Down Expand Up @@ -90,15 +90,15 @@ jobs:
--logger "trx;LogFileName=test-results.trx"

- name: Subir reporte de cobertura
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-report
path: coverage/
retention-days: 7
if-no-files-found: error

- name: Subir resultados de pruebas
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
--logger "trx;LogFileName=test-results.trx"

- name: Subir resultado por combinación
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: results-dotnet${{ matrix.dotnet-version }}-${{ matrix.os }}
Expand Down
Loading