File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -10,27 +10,27 @@ jobs:
1010 runs-on : ubuntu-latest
1111
1212 steps :
13- - name : Checkout repository
13+ - name : Checkout repository
1414 uses : actions/checkout@v2
1515
16- - name : Set up Python
16+ - name : Set up Python
1717 uses : actions/setup-python@v2
1818 with :
19- python-version : ' 3.x'
19+ python-version : 3.x
2020
21- - name : Install dependencies
21+ - name : Install dependencies
2222 run : |
2323 python -m pip install --upgrade pip
2424 pip install pypandoc
2525
26- - name : Convert Markdown to reStructuredText
26+ - name : Convert Markdown to reStructuredText
2727 run : |
2828 for file in $(find . -name "*.md"); do
2929 pypandoc "$file" -f markdown -t rst -o "${file%.md}.rst"
3030 done
3131
32- - name : Upload converted files
33- uses : actions/upload-artifact@v2
34- with :
35- name : converted-docs
36- path : ' **/*.rst'
32+ - name : Upload converted files
33+ uses : actions/upload-artifact@v2
34+ with :
35+ name : converted-docs
36+ path : ' **/*.rst'
You can’t perform that action at this time.
0 commit comments