diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77c04cd..27e3557 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,22 +25,22 @@ jobs: run: mvn clean verify # Mover el reporte de cobertura a la raĆ­z del proyecto - - name: Move coverage report to project root - run: | - mkdir -p coverage - cp -r SYG-bootstrap/target/site/jacoco-aggregate/jacoco.csv coverage/ - cp -r SYG-bootstrap/target/site/jacoco-aggregate/index.html coverage/ + # - name: Move coverage report to project root + # run: | + # mkdir -p coverage + # cp -r SYG-bootstrap/target/site/jacoco-aggregate/jacoco.csv coverage/ + # cp -r SYG-bootstrap/target/site/jacoco-aggregate/index.html coverage/ - - name: Configurar Git para el commit - run: | - git config --global user.name "AlvaroGlezC" - git config --global user.email "uo251891@uniovi.es" + # - name: Configurar Git para el commit + # run: | + # git config --global user.name "AlvaroGlezC" + # git config --global user.email "uo251891@uniovi.es" - - name: Hacer commit y push de la cobertura - run: | - git add -f coverage - git commit -m "Agregar reporte de cobertura" - git push + # - name: Hacer commit y push de la cobertura + # run: | + # git add -f coverage + # git commit -m "Agregar reporte de cobertura" + # git push - name: Upload coverage to Codecov uses: codecov/codecov-action@v4