Skip to content

[MISC] Bump version - minor: 0.13.1 -> 0.14.0 #1

[MISC] Bump version - minor: 0.13.1 -> 0.14.0

[MISC] Bump version - minor: 0.13.1 -> 0.14.0 #1

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: Exit if not on master branch
if: endsWith(github.ref, 'master') == false
run: exit -1
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
ignore_dev_requirements: "yes"
pypi_token: ${{ secrets.PYPI_TOKEN }}
- id: pypi-size
run: stat -c "%s" dist/*.tar.gz | numfmt --to=iec --suffix=B --format="%.2f"
- name: Create repo size badge
uses: RubbaBoy/[email protected]
with:
NAME: pypi-size
LABEL: "package size"
ICON: "pypi"
STATUS: ${{ steps.date.outputs.data }}
COLOR: blue