chore: bump version to 0.5.5 #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish python-markdown-extension to Pypi | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./python-markdown-extension | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repo | |
- uses: eifinger/setup-rye@v3 | |
name: Setup Rye | |
with: | |
enable-cache: true | |
working-directory: python-markdown-extension | |
- run: rye sync | |
name: Install Dependencies | |
- run: rye build | |
name: Build Package | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
name: Publish package distributions to PyPI | |
with: | |
packages-dir: python-markdown-extension/dist/ | |
upload-artifacts: | |
name: Upload Artifacts | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./python-markdown-extension | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repo | |
- uses: eifinger/setup-rye@v3 | |
name: Setup Rye | |
with: | |
enable-cache: true | |
working-directory: python-markdown-extension | |
- run: rye sync | |
name: Install Dependencies | |
- run: rye build | |
name: Build Package | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: python-markdown-extension | |
path: python-markdown-extension/dist/ |