We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c738227 + 5904ef2 commit 2d72b03Copy full SHA for 2d72b03
.github/workflows/docs.yml
@@ -44,7 +44,14 @@ jobs:
44
cd RMG-Py
45
sed -i '/embedsignature/s/# //g' setup.py
46
make
47
- - name: Make documentation
+ - name: Make documentation - CI
48
+ if: ${{ github.event_name != 'push' || github.repository != 'ReactionMechanismGenerator/RMG-Py' }}
49
+ run: |
50
+ make -C documentation continous_integration_setup clean html
51
+ - name: Make documentation - Publish
52
+ if: ${{ github.event_name == 'push' && github.repository == 'ReactionMechanismGenerator/RMG-Py' }}
53
+ env:
54
+ GH_TOKEN: ${{ secrets.RMG_DEV_TOKEN }}
55
run: |
56
make -C documentation continous_integration_setup clean html
57
- name: Check documentation links
0 commit comments