Skip to content

Commit 9c3aa68

Browse files
Antony BaileyAntony Bailey
authored andcommitted
make rst myself
1 parent d5dc46d commit 9c3aa68

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/readthedocs.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)