Skip to content

Commit

Permalink
Convert README.rst to Markdown for making githun release
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jan 13, 2022
1 parent 141937b commit d291c66
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ jobs:
needs: [lint, check]
runs-on: ubuntu-latest
steps:
- name: Install pandoc
run: |
apt install pandoc
- name: Checkout
uses: actions/[email protected]
with:
Expand All @@ -111,6 +114,9 @@ jobs:
- name: Collected dists
run: |
tree dist
- name: Convert README.rst to Markdown
run: |
pandoc -s -o README.md README.rst
- name: PyPI upload
uses: pypa/[email protected]
with:
Expand All @@ -121,6 +127,6 @@ jobs:
with:
name: pytest-asyncio ${{ needs.lint.outputs.version }}
artifacts: dist/*
bodyFile: README.rst
bodyFile: README.md
prerelease: ${{ needs.lint.outputs.prerelease }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d291c66

Please sign in to comment.