diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b389fbb..5f98720 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,10 +68,8 @@ jobs: - name: Create Tag run: git tag ${{ steps.git_version.outputs.version }} - - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: Add new tag - push_options: --tags + - name: Push tag + run: git push origin ${{ steps.git_version.outputs.version }} - name: Set up Python uses: actions/setup-python@v5 diff --git a/setup.py b/setup.py index 737414a..bbf9d10 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ setup( version=get_latest_git_tag(), description="Collection of my Python and FastAPI shortcuts, snippets etc.", long_description=open("README.md").read(), + long_description_content_type="text/markdown", author="Conrad Großer", author_email="conrad@noah.tech", packages=find_packages(),