We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48e652d commit 5ef7d3cCopy full SHA for 5ef7d3c
.github/workflows/release.yml
@@ -39,6 +39,11 @@ jobs:
39
40
- name: Build package and docs
41
run: |
42
+ git config --local user.email "feedback@materialsproject.org"
43
+ git config --local user.name "materialsproject"
44
+ git fetch --all --prune
45
+ git checkout main
46
+ git pull
47
python${{ matrix.python-version }} -m build
48
cd docs_rst
49
python${{ matrix.python-version }} featurizer_summary.py > featurizer_summary.rst
@@ -51,8 +56,6 @@ jobs:
51
56
rm -r html
52
57
rm -r doctrees
53
58
touch .nojekyll
54
- git config --local user.email "feedback@materialsproject.org"
55
- git config --local user.name "materialsproject"
59
git add .
60
git commit -a -m "update docs"
61
git push
0 commit comments