We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df71a1 commit 403274cCopy full SHA for 403274c
1 file changed
.github/workflows/convert.yml
@@ -14,11 +14,16 @@ jobs:
14
sudo dpkg -i pandoc-2.19.2-1-amd64.deb
15
pandoc README.md --from markdown -f gfm --to rst -s -o docs/index.rst
16
cat docs/appending >> docs/index.rst
17
+ - name: checkout master
18
+ run: |
19
+ git fetch origin master
20
+ git checkout master
21
+ git pull origin master
22
- name: commit index.rst
23
run: |
24
git config --global user.name 'YoEnte'
25
git config --global user.email 'anthonyroeder@live.de'
26
git add docs/index.rst
27
git commit -m "docs: auto update index.rst"
- git push origin HEAD:master --force-with-lease
28
+ git push origin master --force-with-lease
29
continue-on-error: true
0 commit comments