We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc3113 commit 3e91c3eCopy full SHA for 3e91c3e
.github/workflows/docs.yml
@@ -32,11 +32,14 @@ jobs:
32
output-format: markdown table
33
git-push: false
34
35
+ - name: Fix .git permissions
36
+ # Fix "error: insufficient permission for adding an object to repository database .git/objects"
37
+ run: sudo chmod -R ugo+rwX .git
38
+
39
- name: Commit changes
40
run: |
41
git config user.name github-actions
42
git config user.email github-actions@github.com
- sudo chmod -R ugo+rwX .git
43
git add graph.png
44
git add README.md
45
git diff-index --quiet HEAD || git commit -m "Update docs"
0 commit comments