Skip to content

Commit

Permalink
Fix RustDocs deployment & codecov patch checks (#1870)
Browse files Browse the repository at this point in the history
* Fix deploy docs

* Make patch checks also informational (not fail)
  • Loading branch information
gpmayorga authored Jul 2, 2024
1 parent 753a8b5 commit 2f08ae7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 3 additions & 1 deletion codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ coverage:
status:
project:
default:
informational: true
informational: true
patch:
informational: true

0 comments on commit 2f08ae7

Please sign in to comment.