From 2f08ae72b66d85f4505889ee464484d823041718 Mon Sep 17 00:00:00 2001 From: Guillermo Perez Date: Tue, 2 Jul 2024 19:31:12 +0200 Subject: [PATCH] Fix RustDocs deployment & codecov patch checks (#1870) * Fix deploy docs * Make patch checks also informational (not fail) --- .github/workflows/deploy-docs.yml | 16 +++++++++++----- codecov.yaml | 4 +++- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 52ee539c27..eb02a52824 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -57,12 +57,18 @@ jobs: echo "::warning title=Invalid file permissions automatically fixed::$line" done - - name: upload Docs files - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0 + # - name: upload Docs files + # uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0 + # with: + # name: github-pages + # path: ./target/doc + # retention-days: 1 + # https://github.com/actions/deploy-pages/issues/179 + + - name: Upload Docs + uses: actions/upload-pages-artifact@v3 with: - name: github-pages - path: ./target/doc - retention-days: 1 + path: ./target/doc - name: Deploy Docs # if: github.ref == 'refs/heads/main' diff --git a/codecov.yaml b/codecov.yaml index 429e2a3a5e..8bc5303d86 100644 --- a/codecov.yaml +++ b/codecov.yaml @@ -4,4 +4,6 @@ coverage: status: project: default: - informational: true \ No newline at end of file + informational: true + patch: + informational: true