We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141937b commit d291c66Copy full SHA for d291c66
.github/workflows/main.yml
@@ -99,6 +99,9 @@ jobs:
99
needs: [lint, check]
100
runs-on: ubuntu-latest
101
steps:
102
+ - name: Install pandoc
103
+ run: |
104
+ apt install pandoc
105
- name: Checkout
106
uses: actions/[email protected]
107
with:
@@ -111,6 +114,9 @@ jobs:
111
114
- name: Collected dists
112
115
run: |
113
116
tree dist
117
+ - name: Convert README.rst to Markdown
118
119
+ pandoc -s -o README.md README.rst
120
- name: PyPI upload
121
uses: pypa/[email protected]
122
@@ -121,6 +127,6 @@ jobs:
127
128
name: pytest-asyncio ${{ needs.lint.outputs.version }}
123
129
artifacts: dist/*
124
- bodyFile: README.rst
130
+ bodyFile: README.md
125
131
prerelease: ${{ needs.lint.outputs.prerelease }}
126
132
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments