Skip to content

[MISC] Bump version - patch: 0.23.0 -> 0.23.1 #17

[MISC] Bump version - patch: 0.23.0 -> 0.23.1

[MISC] Bump version - patch: 0.23.0 -> 0.23.1 #17

Workflow file for this run

name: Pypi publish
on:
push:
tags:
- "v*"
jobs:
publish:
environment: Pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
ignore_dev_requirements: "yes"
pypi_token: ${{ secrets.PYPI_TOKEN }}
- id: pypi-size
run: echo "size=`stat -c "%s" dist/*.tar.gz | numfmt --to=iec --suffix=B --format="%.2f"`" >> "$GITHUB_OUTPUT"
- name: Create repo size badge
uses: RubbaBoy/[email protected]
with:
NAME: pypi-size
LABEL: "package size"
ICON: "pypi"
STATUS: ${{ steps.pypi-size.outputs.size }}
COLOR: blue
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}